/* Custom Dashboard Styles */

/* Base styles */
body {
    background-color: #f8f9fa;
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Card enhancements */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
    position: relative;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Stats cards */
.stats-card {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
}

.stats-card .card-body {
    padding: 1.5rem;
}

/* Button enhancements */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.theme-surface {
    background-color: #ffffff;
    color: inherit;
}

.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    border-width: 1px;
    border-style: solid;
    background-color: transparent;
    border-color: rgba(15, 23, 42, 0.18);
    color: #0f172a;
}

.theme-toggle-btn .fas {
    font-size: 0.9rem;
}

.theme-toggle-btn .fa-moon {
    display: none;
}

.theme-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.4rem;
}

.theme-toggle-icon .fas {
    width: 0.95rem;
    text-align: center;
}

/* Table enhancements */
.table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
    background-color: #f8f9fa;
}

.table td {
    color: #212529;
    vertical-align: middle;
}

.table tbody tr:hover {
    background-color: rgba(102, 126, 234, 0.05);
}
.table .btn-group .btn {
    border-color: transparent;
}

.table .btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.table .btn-outline-warning {
    color: #fd7e14;
    border-color: #fd7e14;
}

.table .btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.table-responsive {
    border-radius: 8px;
    overflow: hidden;
}

/* Product table enhancements */
.table.product-table {
    background-color: white;
}

.table.product-table th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.table.product-table td {
    color: #212529;
    font-weight: 500;
    padding: 1rem 0.75rem;
}

.table.product-table .product-name {
    color: #0d6efd;
    font-weight: 600;
}

.table.product-table .product-price {
    color: #198754;
    font-weight: 600;
    font-size: 1.1em;
}

.table.product-table .product-sku {
    color: #6c757d;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.table.product-table .stock-info {
    color: #495057;
    font-weight: 500;
}

.table.product-table .stock-low {
    color: #dc3545;
    font-weight: 600;
}

.table.product-table .stock-good {
    color: #198754;
    font-weight: 600;
}

.table.product-table .product-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

/* Status badges */
.badge {
    font-size: 0.75em;
    font-weight: 500;
    padding: 0.5em 0.75em;
}

/* Progress bars */
.progress {
    border-radius: 10px;
    height: 8px;
}

.progress-bar {
    border-radius: 10px;
}

/* Navigation enhancements */
.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

.nav-link {
    border-radius: 6px;
    margin: 0 2px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Form enhancements */
.form-control {
    border-radius: 8px;
    border: 1px solid #e3e6f0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-select {
    border-radius: 8px;
    border: 1px solid #e3e6f0;
}

/* Modal enhancements */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid #e3e6f0;
    border-radius: 15px 15px 0 0;
}

.modal-footer {
    border-top: 1px solid #e3e6f0;
    border-radius: 0 0 15px 15px;
}

/* Alert enhancements */
.alert {
    border-radius: 10px;
    border: none;
}

.alert-danger {
    background-color: #fdf2f2;
    color: #d32f2f;
}

.alert-success {
    background-color: #f0f9f0;
    color: #2e7d32;
}

.alert-warning {
    background-color: #fff8f0;
    color: #f57c00;
}

.alert-info {
    background-color: #f0f8ff;
    color: #0288d1;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    margin-bottom: 2rem;
}

/* Custom utilities */
.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Overlay spinner for product submission */
.submit-spinner {
    position: fixed;
    top: 0; left: 0; right:0; bottom:0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.65);
    z-index: 2000;
}

/* Ensure navbar dropdown stays within viewport and above other elements */
.navbar .dropdown-menu {
    z-index: 1500;
    max-height: 70vh;
    overflow-y: auto;
}

/* Prevent overflow clipping in navbars */
.navbar, .container-fluid, body {
    overflow: visible !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .btn-group-sm > .btn {
        font-size: 0.75rem;
    }
}

/* Vendor orders explicit theme handling */
body.vendor-theme {
    transition: background-color 0.25s ease, color 0.25s ease;
    background-color: #f8f9fa;
    color: #212529;
}

body.vendor-theme .vendor-navbar .nav-link {
    transition: color 0.2s ease, background-color 0.2s ease;
}

body.vendor-theme[data-theme="dark"] {
    background-color: #0f172a;
    color: #e2e8f0;
}

body.vendor-theme[data-theme="dark"] .navbar.vendor-navbar {
    background-color: #111827 !important;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

body.vendor-theme[data-theme="dark"] .navbar.vendor-navbar .navbar-brand,
body.vendor-theme[data-theme="dark"] .navbar.vendor-navbar .nav-link {
    color: rgba(248, 250, 252, 0.85) !important;
}

body.vendor-theme[data-theme="dark"] .navbar.vendor-navbar .nav-link.active,
body.vendor-theme[data-theme="dark"] .navbar.vendor-navbar .nav-link:hover,
body.vendor-theme[data-theme="dark"] .navbar.vendor-navbar .navbar-brand:hover {
    color: #ffffff !important;
}

body.vendor-theme[data-theme="dark"] .theme-toggle-btn {
    background-color: transparent;
    border-color: rgba(248, 250, 252, 0.35);
    color: #f8fafc;
}

body.vendor-theme[data-theme="dark"] .theme-toggle-btn:hover,
body.vendor-theme[data-theme="dark"] .theme-toggle-btn:focus {
    border-color: rgba(248, 250, 252, 0.55);
    background-color: rgba(248, 250, 252, 0.08);
}

body.vendor-theme[data-theme="dark"] .theme-toggle-btn .fa-sun {
    display: inline;
}

body.vendor-theme[data-theme="dark"] .theme-toggle-btn .fa-moon {
    display: none;
}

body.vendor-theme[data-theme="dark"] .theme-surface,
body.vendor-theme[data-theme="dark"] .card {
    background-color: #1f2937;
    color: #e2e8f0;
    box-shadow: 0 12px 24px -16px rgba(15, 23, 42, 0.65);
}

body.vendor-theme[data-theme="dark"] .card .text-muted,
body.vendor-theme[data-theme="dark"] .theme-surface .text-muted {
    color: #94a3b8 !important;
}

body.vendor-theme[data-theme="dark"] .modal-content {
    --bs-modal-bg: #111827;
    --bs-modal-color: #f8fafc;
    --bs-modal-border-color: #334155;
    background-color: #111827 !important;
    color: #f8fafc !important;
    border-color: #334155 !important;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.45);
}

body.vendor-theme[data-theme="dark"] .modal-header,
body.vendor-theme[data-theme="dark"] .modal-footer {
    border-color: #334155;
}

body.vendor-theme[data-theme="dark"] .modal-header,
body.vendor-theme[data-theme="dark"] .modal-body,
body.vendor-theme[data-theme="dark"] .modal-footer {
    background-color: transparent !important;
    color: inherit;
}

body.vendor-theme[data-theme="dark"] .modal-title {
    color: inherit;
}

body.vendor-theme[data-theme="dark"] .modal-body {
    color: #e2e8f0;
}

body.vendor-theme[data-theme="dark"] .btn-close {
    filter: invert(0.9) brightness(1.2);
}

body.vendor-theme[data-theme="dark"] .modal-footer .btn-secondary {
    background-color: rgba(148, 163, 184, 0.16);
    border-color: rgba(148, 163, 184, 0.35);
    color: #e2e8f0;
}

body.vendor-theme[data-theme="dark"] .modal-footer .btn-secondary:hover,
body.vendor-theme[data-theme="dark"] .modal-footer .btn-secondary:focus {
    background-color: rgba(148, 163, 184, 0.3);
    color: #0f172a;
}

body.vendor-theme[data-theme="dark"] .modal-footer .btn-outline-primary {
    border-color: #60a5fa;
    color: #60a5fa;
}

body.vendor-theme[data-theme="dark"] .modal-footer .btn-outline-primary:hover,
body.vendor-theme[data-theme="dark"] .modal-footer .btn-outline-primary:focus {
    background-color: #60a5fa;
    color: #0f172a;
}

body.vendor-theme .order-snapshot-modal .modal-content {
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
}

body.vendor-theme[data-theme="dark"] .order-snapshot-modal .modal-content {
    background-color: #0f172a !important;
    color: #f8fafc !important;
}

body.vendor-theme[data-theme="dark"] .order-snapshot-modal .card {
    background-color: rgba(15, 23, 42, 0.65);
    border-color: #1f2937;
}

body.vendor-theme[data-theme="dark"] .order-snapshot-modal .border,
body.vendor-theme[data-theme="dark"] .order-snapshot-modal .border-bottom {
    border-color: rgba(148, 163, 184, 0.25) !important;
}

body.vendor-theme[data-theme="dark"] .order-snapshot-modal .text-muted {
    color: #94a3b8 !important;
}

/* Order action tiles */
body.vendor-theme .order-actions-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.15rem;
    justify-content: flex-start;
    align-items: center;
}

body.vendor-theme .order-action-tile {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    padding: 0;
    border-radius: 6px;
    border: 1px solid #1f2a40;
    background: linear-gradient(155deg, #111a2d 0%, #0c1526 100%);
    color: #5eead4;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(94, 234, 212, 0.15), 0 18px 34px rgba(8, 47, 73, 0.35);
}

body.vendor-theme .order-action-tile i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.05rem;
    line-height: 1;
    color: inherit;
}

body.vendor-theme .order-action-tile:focus-visible {
    outline: 2px solid rgba(94, 234, 212, 0.55);
    outline-offset: 4px;
}

body.vendor-theme .order-action-tile:hover:not([disabled]) {
    transform: translateY(-1px);
    background: linear-gradient(155deg, #132033 0%, #0c192d 100%);
    color: #67f6de;
    border-color: rgba(94, 234, 212, 0.55);
    box-shadow: 0 22px 36px rgba(8, 47, 73, 0.42);
}

body.vendor-theme a.order-action-tile {
    color: inherit;
}

body.vendor-theme .order-action-tile[disabled],
body.vendor-theme .order-action-tile.disabled {
    opacity: 1;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: none;
    background: linear-gradient(155deg, #1f2638 0%, #1b2333 100%);
    border-color: #2a3247;
    color: #4f5d78;
}

body.vendor-theme .order-action-tile[disabled] i {
    color: #4f5d78 !important;
}

body.vendor-theme[data-theme="light"] .order-action-tile {
    background: linear-gradient(155deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #0f766e;
    border-color: #67f6de;
    box-shadow: inset 0 1px 0 rgba(94, 234, 212, 0.25), 0 12px 26px rgba(148, 163, 184, 0.2);
}

body.vendor-theme[data-theme="light"] .order-action-tile:hover:not([disabled]) {
    background: linear-gradient(155deg, #cffafe 0%, #a5f3fc 100%);
    color: #0f172a;
    border-color: #22d3ee;
    box-shadow: 0 18px 28px rgba(34, 211, 238, 0.25);
}

body.vendor-theme[data-theme="light"] .order-action-tile[disabled],
body.vendor-theme[data-theme="light"] .order-action-tile.disabled {
    background: #d7dde9;
    border-color: #cbd5f5;
    color: #94a3b8;
    box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.45);
}

@media (max-width: 991.98px) {
    body.vendor-theme .order-actions-grid {
        flex-wrap: wrap;
    }

    body.vendor-theme .order-action-tile {
        flex: 1 1 calc(33.333% - 0.35rem);
        width: auto;
        max-width: 66px;
    }
}

@media (max-width: 575.98px) {
    body.vendor-theme .order-action-tile {
        flex: 1 1 calc(33.333% - 0.3rem);
        max-width: 62px;
        height: 50px;
        border-radius: 11px;
    }

    body.vendor-theme .order-action-tile i {
        font-size: 0.95rem;
    }
}

body.vendor-theme[data-theme="dark"] .bg-white,
body.vendor-theme[data-theme="dark"] .bg-light {
    background-color: #1f2937 !important;
    color: #e2e8f0;
}

.order-action-tile--summary {
    color: #ffffff !important;
}

.order-action-tile--summary i {
    color: inherit;
}

.order-action-tile--summary:hover:not([disabled]) {
    color: #67f6de !important;
}

body.vendor-theme[data-theme="dark"] .text-dark {
    color: #e2e8f0 !important;
}

body.vendor-theme[data-theme="dark"] .fw-semibold {
    color: #f8fafc;
}

body.vendor-theme[data-theme="dark"] h1,
body.vendor-theme[data-theme="dark"] h2,
body.vendor-theme[data-theme="dark"] h3,
body.vendor-theme[data-theme="dark"] h4,
body.vendor-theme[data-theme="dark"] h5,
body.vendor-theme[data-theme="dark"] h6,
body.vendor-theme[data-theme="dark"] .h1,
body.vendor-theme[data-theme="dark"] .h2,
body.vendor-theme[data-theme="dark"] .h3,
body.vendor-theme[data-theme="dark"] .h4,
body.vendor-theme[data-theme="dark"] .h5,
body.vendor-theme[data-theme="dark"] .h6 {
    color: #f8fafc;
}

body.vendor-theme[data-theme="dark"] .badge.bg-warning {
    color: #1e293b;
}

body.vendor-theme[data-theme="dark"] .badge.bg-info.bg-opacity-25 {
    background-color: rgba(14, 165, 233, 0.18) !important;
    color: #38bdf8 !important;
}

body.vendor-theme[data-theme="dark"] .badge.bg-secondary.bg-opacity-25 {
    background-color: rgba(148, 163, 184, 0.24) !important;
    color: #e2e8f0 !important;
}

body.vendor-theme[data-theme="dark"] .card.border-0.bg-light {
    background-color: #1f2937;
}

body.vendor-theme[data-theme="dark"] .theme-surface .display-6 {
    color: #60a5fa;
}

body.vendor-theme[data-theme="dark"] .btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

body.vendor-theme[data-theme="dark"] .btn-primary:hover,
body.vendor-theme[data-theme="dark"] .btn-primary:focus {
    background-color: #2563eb;
    border-color: #2563eb;
}

body.vendor-theme[data-theme="dark"] .btn-outline-secondary[data-order-action="quick-view"] {
    color: #38bdf8;
    border-color: #38bdf8;
}

body.vendor-theme[data-theme="dark"] .btn-outline-secondary[data-order-action="quick-view"]:hover,
body.vendor-theme[data-theme="dark"] .btn-outline-secondary[data-order-action="quick-view"]:focus {
    background-color: #38bdf8;
    color: #0f172a;
}

body.vendor-theme[data-theme="dark"] .badge.bg-success {
    color: #052e16;
}

body.vendor-theme[data-theme="dark"] .badge.bg-danger {
    color: #fee2e2;
}

body.vendor-theme[data-theme="light"] {
    background-color: #f7f9fc;
    color: #212529;
}

body.vendor-theme[data-theme="light"] .navbar.vendor-navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.vendor-theme[data-theme="light"] .navbar.vendor-navbar .navbar-brand,
body.vendor-theme[data-theme="light"] .navbar.vendor-navbar .nav-link {
    color: #0f172a !important;
}

body.vendor-theme[data-theme="light"] .navbar.vendor-navbar .nav-link.active,
body.vendor-theme[data-theme="light"] .navbar.vendor-navbar .nav-link:hover {
    color: #0d6efd !important;
}

body.vendor-theme[data-theme="light"] .theme-toggle-btn {
    border-color: rgba(15, 23, 42, 0.18);
    color: #0f172a;
}

body.vendor-theme[data-theme="light"] .theme-toggle-btn:hover,
body.vendor-theme[data-theme="light"] .theme-toggle-btn:focus {
    border-color: rgba(13, 110, 253, 0.55);
    background-color: rgba(13, 110, 253, 0.08);
}

body.vendor-theme[data-theme="light"] .theme-toggle-btn .fa-sun {
    display: none;
}

body.vendor-theme[data-theme="light"] .theme-toggle-btn .fa-moon {
    display: inline;
}

body.vendor-theme[data-theme="light"] .theme-surface {
    background-color: #ffffff;
    color: #0f172a;
}

body.vendor-theme[data-theme="light"] .card {
    background-color: #ffffff;
    color: #1f2937;
}

body.vendor-theme[data-theme="light"] .table thead {
    background-color: #eef2ff;
}

body.vendor-theme[data-theme="light"] .table tbody tr:hover {
    background-color: rgba(102, 126, 234, 0.08);
}

body.vendor-theme[data-theme="light"] .form-control,
body.vendor-theme[data-theme="light"] .form-select {
    background-color: #ffffff;
    color: #212529;
}

body.vendor-theme[data-theme="light"] .theme-toggle-btn .fa-moon {
    font-size: 0.95rem;
}

body.vendor-theme[data-theme="light"] .modal-content {
    --bs-modal-bg: #ffffff;
    --bs-modal-color: #1f2937;
    --bs-modal-border-color: rgba(15, 23, 42, 0.08);
    color: #1f2937;
}

body.vendor-theme[data-theme="light"] .modal-footer .btn-secondary {
    background-color: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.24);
    color: #0f172a;
}

body.vendor-theme[data-theme="light"] .modal-footer .btn-secondary:hover,
body.vendor-theme[data-theme="light"] .modal-footer .btn-secondary:focus {
    background-color: rgba(148, 163, 184, 0.22);
    color: #0f172a;
}

body.vendor-theme[data-theme="light"] .modal-footer .btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
}

body.vendor-theme[data-theme="light"] .modal-footer .btn-outline-primary:hover,
body.vendor-theme[data-theme="light"] .modal-footer .btn-outline-primary:focus {
    background-color: #0d6efd;
    color: #ffffff;
}


/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #ffffff;
    }
    
    .card {
        background-color: #2d2d2d;
        border-color: #404040;
    }
    
    .table {
        color: #ffffff;
    }
    
    .table th {
        background-color: #404040;
        color: #ffffff;
    }
    
    .table td {
        color: #ffffff !important;
    }
    
    .table .text-muted {
        color: #adb5bd !important;
    }
    
    .table strong {
        color: #ffffff !important;
    }
    
    .form-control {
        background-color: #2d2d2d;
        border-color: #404040;
        color: #ffffff;
    }
    
    .form-control:focus {
        background-color: #2d2d2d;
        border-color: #667eea;
        color: #ffffff;
    }
}

/* Chart containers */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

/* Image upload styles */
.image-upload-area {
    border: 2px dashed #e3e6f0;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.image-upload-area:hover {
    border-color: #667eea;
    background-color: rgba(102, 126, 234, 0.05);
}

.image-upload-area.dragover {
    border-color: #667eea;
    background-color: rgba(102, 126, 234, 0.1);
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.skeleton-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

.skeleton-line {
    height: 14px;
    background: linear-gradient(90deg,#e2e2e2 25%,#f0f0f0 50%,#e2e2e2 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.2s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.toast.bg-info.verification {
    background-color: #0d6efd !important;
}
