/* CSS Design System - Smartstore & BirFatura Integration Panel */

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #101626;
    --bg-card: rgba(20, 28, 48, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --color-primary: #6366f1;       /* Indigo Accent */
    --color-primary-hover: #4f46e5;
    --color-primary-soft: rgba(99, 102, 241, 0.15);
    
    --color-text-main: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-text-dark: #6b7280;
    
    --color-success: #10b981;
    --color-success-soft: rgba(16, 185, 129, 0.15);
    --color-warning: #f59e0b;
    --color-warning-soft: rgba(245, 158, 11, 0.15);
    --color-danger: #ef4444;
    --color-danger-soft: rgba(239, 68, 68, 0.15);
    --color-info: #06b6d4;
    --color-info-soft: rgba(6, 182, 212, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-speed: 0.3s;
}

/* General Resets & Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--color-text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background decorative glow */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.12;
    pointer-events: none;
}
.bg-glow-1 {
    top: -200px;
    left: -100px;
    background-color: var(--color-primary);
}
.bg-glow-2 {
    bottom: -200px;
    right: -100px;
    background-color: var(--color-info);
}

/* Utilities */
.hidden {
    display: none !important;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.text-muted { color: var(--color-text-muted); }
.text-danger { color: var(--color-danger); }
.text-primary { color: var(--color-primary); }
.text-warning { color: var(--color-warning); }
.text-info { color: var(--color-info); }
.text-success { color: var(--color-success); }
.animate-pulse {
    animation: pulse 2s infinite alternate;
}
@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Authentication Page */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
.auth-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 450px;
    padding: 40px;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 16px;
}
.logo i {
    font-size: 28px;
    color: var(--color-primary);
}
.auth-header h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
.auth-header p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}
.input-wrapper {
    position: relative;
}
.input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-dark);
    font-size: 16px;
}
.input-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all var(--transition-speed);
}
.input-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="url"],
.form-group input[type="datetime-local"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all var(--transition-speed);
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}
.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--color-text-dark);
}

/* Alert Boxes */
.error-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-danger-soft);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    color: #fca5a5;
    font-size: 13px;
    margin-bottom: 20px;
}
.info-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-info-soft);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    color: #99f6e4;
    font-size: 13px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed);
}
.btn-block {
    width: 100%;
    padding: 12px;
}
.btn-primary {
    background: var(--color-primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}
.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--color-text-main);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
}
.btn-danger {
    background: var(--color-danger);
    color: #fff;
}
.btn-danger:hover {
    background: #dc2626;
}
.btn-icon {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
}
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Main Layout */
.app-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

/* Sidebar styling */
.sidebar {
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
}
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.sidebar-header .logo {
    font-size: 20px;
    margin-bottom: 0;
}
.sidebar-header .logo i {
    font-size: 24px;
}
.badge-version {
    background: rgba(255,255,255,0.05);
    color: var(--color-text-muted);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed);
}
.menu-item:hover, .menu-item.active {
    color: #fff;
    background: rgba(99, 102, 241, 0.1);
}
.menu-item.active {
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.sidebar-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    border: 1px solid var(--border-color);
}
.user-details {
    display: flex;
    flex-direction: column;
}
.user-details .username {
    font-size: 13px;
    font-weight: 600;
}
.user-details .role {
    font-size: 11px;
    color: var(--color-text-muted);
}
.btn-logout {
    background: transparent;
    color: var(--color-text-muted);
    font-size: 18px;
    padding: 8px;
}
.btn-logout:hover {
    color: var(--color-danger);
}

/* Main Content styling */
.main-content {
    padding: 40px;
    max-height: 100vh;
    overflow-y: auto;
}
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.header-title h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}
.header-title p {
    color: var(--color-text-muted);
    font-size: 14px;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Toggle Switch */
.sync-mode-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mode-label {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}
.toggle-switch {
    position: relative;
    width: 160px;
    height: 38px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    transition: var(--transition-speed);
    display: flex;
    align-items: center;
    padding: 4px;
}
.toggle-switch label::after {
    content: '';
    position: absolute;
    height: 28px;
    width: 78px;
    left: 4px;
    bottom: 4px;
    background-color: var(--color-primary);
    border-radius: 20px;
    transition: var(--transition-speed);
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.35);
}
.toggle-text {
    flex: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-speed);
}
.toggle-text.manual {
    color: #fff;
}
.toggle-text.auto {
    color: var(--color-text-muted);
}
.toggle-switch input:checked + label::after {
    left: 76px;
    background-color: var(--color-success);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
}
.toggle-switch input:checked + label .toggle-text.manual {
    color: var(--color-text-muted);
}
.toggle-switch input:checked + label .toggle-text.auto {
    color: #fff;
}

/* Tab Pane behavior */
.tab-pane {
    display: none;
    animation: fadeIn 0.4s;
}
.tab-pane.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Cards & Grid Systems */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.15);
    margin-bottom: 24px;
}
.card-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}
.card-header h2 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-description {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.15);
    position: relative;
}
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.bg-primary-soft { background: var(--color-primary-soft); }
.bg-warning-soft { background: var(--color-warning-soft); }
.bg-info-soft { background: var(--color-info-soft); }
.bg-success-soft { background: var(--color-success-soft); }
.bg-danger-soft { background: var(--color-danger-soft); }

.stat-info h3 {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}
.stat-value {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
}
.card-action {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 12px;
    font-weight: 600;
}
.text-warning-link {
    color: var(--color-warning);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.text-warning-link:hover {
    text-decoration: underline;
}

/* Dashboard layouts */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.col-2 {
    grid-column: span 2;
}

/* Status Lists */
.status-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.status-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.status-label {
    color: var(--color-text-muted);
}
.status-value {
    font-weight: 500;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}
.badge-success { background: var(--color-success-soft); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, 0.2); }
.badge-warning { background: var(--color-warning-soft); color: #fde047; border: 1px solid rgba(245, 158, 11, 0.2); }
.badge-danger { background: var(--color-danger-soft); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.2); }
.badge-info { background: var(--color-info-soft); color: #67e8f9; border: 1px solid rgba(6, 182, 212, 0.2); }
.badge-secondary { background: rgba(255,255,255,0.05); color: var(--color-text-muted); border: 1px solid var(--border-color); }

/* API Links */
.api-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.api-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 14, 26, 0.4);
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}
.api-link-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
}
code {
    font-family: Consolas, Monaco, 'Andale Mono', monospace;
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

/* Settings Forms Grid */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
}
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
}
.input-group {
    display: flex;
    gap: 8px;
}
.input-group input {
    flex: 1;
}

/* Orders Table View */
.table-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}
.search-box {
    position: relative;
    width: 100%;
    max-width: 320px;
}
.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-dark);
}
.search-box input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-main);
    font-size: 13px;
}
.search-box input:focus {
    outline: none;
    border-color: var(--color-primary);
}
.filters {
    display: flex;
    gap: 12px;
    align-items: center;
}
.filters select {
    padding: 10px 16px;
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-main);
    font-size: 13px;
    cursor: pointer;
}

/* Table elements */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}
.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
}
.table th, .table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
}
.table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.02);
}
.table tbody tr {
    transition: background var(--transition-speed);
}
.table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}
.table input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Table Action Buttons */
.btn-action {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    transition: color var(--transition-speed);
}
.btn-action:hover {
    color: var(--color-primary);
}

.table-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.pagination-info {
    font-size: 12px;
    color: var(--color-text-muted);
}
.pagination-buttons {
    display: flex;
    gap: 8px;
}

/* Modals */
.modal-wrapper {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 7, 14, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.25s ease-out;
}
.modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
    border-radius: var(--border-radius-md);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-lg {
    max-width: 900px;
}
@keyframes scaleUp {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
}
.btn-close-modal {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 20px;
    cursor: pointer;
}
.btn-close-modal:hover {
    color: #fff;
}
.modal-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}
.modal-footer {
    padding: 16px 24px;
    background: rgba(0,0,0,0.15);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Order Details Modal styling */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.detail-section h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
    border-left: 3px solid var(--color-primary);
    padding-left: 8px;
}
.detail-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.detail-info-table td {
    padding: 6px 0;
    vertical-align: top;
}
.detail-info-table td:first-child {
    color: var(--color-text-muted);
    font-weight: 500;
}

.detail-error-box {
    background: var(--color-danger-soft);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--border-radius-sm);
    padding: 16px;
}
.detail-error-box h4 {
    font-size: 13px;
    font-weight: 600;
    color: #fca5a5;
    margin-bottom: 6px;
}
.detail-error-box p {
    font-size: 12px;
    color: #fca5a5;
    line-height: 1.5;
}

.detail-products-section h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
}
.detail-products-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}
.detail-products-table th, .detail-products-table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--border-color);
}
.detail-products-table th {
    background: rgba(255,255,255,0.02);
    color: var(--color-text-muted);
    font-weight: 600;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}
.toast {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-radius: var(--border-radius-sm);
    padding: 16px 20px;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 450px;
    pointer-events: auto;
    animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1), toastOut 0.3s 3.7s forwards;
    border-left: 4px solid var(--color-primary);
}
.toast.toast-success { border-left-color: var(--color-success); }
.toast.toast-danger { border-left-color: var(--color-danger); }
.toast.toast-warning { border-left-color: var(--color-warning); }
.toast.toast-info { border-left-color: var(--color-info); }
.toast i { font-size: 18px; }
.toast-success i { color: var(--color-success); }
.toast-danger i { color: var(--color-danger); }
.toast-warning i { color: var(--color-warning); }
.toast-info i { color: var(--color-info); }
.toast-message { font-size: 13px; font-weight: 500; }

@keyframes toastIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes toastOut {
    to { transform: translateX(100px); opacity: 0; }
}
