/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4F46E5;
    --primary-dark: #4338CA;
    --secondary-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    --dark-color: #1F2937;
    --light-color: #F3F4F6;
    --white-color: #FFFFFF;
    --border-color: #E5E7EB;
    --text-color: #374151;
    --text-light: #6B7280;
    --sidebar-width: 280px;
    --navbar-height: 70px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Login Page */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.login-logo h1 {
    font-size: 28px;
    color: var(--dark-color);
    margin: 0;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.login-form label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.login-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

/* Alert */
.alert {
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: #FEE2E2;
    color: var(--danger-color);
    border: 1px solid #FCA5A5;
}

.alert-success {
    background: #D1FAE5;
    color: var(--secondary-color);
    border: 1px solid #6EE7B7;
}

.alert-warning {
    background: #FEF3C7;
    color: var(--warning-color);
    border: 1px solid #FCD34D;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--white-color);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
}

.sidebar-header .sidebar-toggle {
    display: none;
}

.sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.menu-section {
    padding: 15px 12px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.menu-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.menu-item.active {
    background: var(--primary-color);
    color: white;
}

.menu-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar i {
    font-size: 28px;
    color: var(--text-light);
}

.user-details {
    flex: 1;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.user-role {
    font-size: 12px;
    color: var(--text-light);
}

.btn-logout {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--light-color);
    color: var(--danger-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-logout:hover {
    background: var(--danger-color);
    color: white;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

/* Navbar */
.navbar {
    height: var(--navbar-height);
    background: white;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .sidebar-toggle {
    display: none;
}

.navbar-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.datetime {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

/* Content Area */
.content-area {
    padding: 30px;
}

/* Cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.card-icon.primary {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.card-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
}

.card-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.card-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.card-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.card-label {
    color: var(--text-light);
    font-size: 14px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    justify-content: center;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
}

.btn-success {
    background: var(--secondary-color);
    color: white;
}

.btn-success:hover:not(:disabled) {
    background: #059669;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: #DC2626;
}

.btn-warning {
    background: var(--warning-color);
    color: white;
}

.btn-warning:hover:not(:disabled) {
    background: #D97706;
}

.btn-secondary {
    background: var(--light-color);
    color: var(--text-color);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--border-color);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

/* Tables */
.table-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.table-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
}

.table-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead {
    background: var(--light-color);
}

table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

table tbody tr:hover {
    background: var(--light-color);
}

/* Form */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
}

.form-group label i {
    margin-right: 5px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex: 1;
}

/* Search Box */
.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-primary {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
}

.modal-close {
    width: 35px;
    height: 35px;
    border: none;
    background: var(--light-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--danger-color);
    color: white;
}

.modal-body {
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    background: var(--light-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s;
}

.sidebar-toggle:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar-header .sidebar-toggle {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .navbar .sidebar-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 60px;
    }
    
    .navbar {
        padding: 0 15px;
    }
    
    .navbar-title {
        font-size: 18px;
    }
    
    .content-area {
        padding: 15px;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        padding: 15px;
    }
    
    .table-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .table-actions {
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .card-value {
        font-size: 24px;
    }
    
    table {
        font-size: 12px;
    }
    
    table th,
    table td {
        padding: 8px 10px;
    }
}

/* Print Styles */
@media print {
    .sidebar,
    .navbar,
    .btn,
    .table-actions {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .content-area {
        padding: 0;
    }
}

/* Kasir Specific Styles */
.kasir-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
    height: calc(100vh - var(--navbar-height) - 60px);
}

.product-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    overflow-y: auto;
}

.cart-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.product-card {
    background: var(--light-color);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.product-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.product-price {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin: 15px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.cart-item-price {
    font-size: 12px;
    color: var(--text-light);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-btn {
    width: 25px;
    height: 25px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 3px;
}

.cart-summary {
    border-top: 2px solid var(--border-color);
    padding-top: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Barcode Scanner */
.scanner-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

#scanner-video {
    width: 100%;
    border-radius: 10px;
}

.scanner-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--danger-color);
    animation: scan 2s infinite;
}

@keyframes scan {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

/* Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--light-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Receipt Print */
.receipt {
    width: 302px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 10px;
}

.receipt-header {
    text-align: center;
    margin-bottom: 15px;
}

.receipt-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.receipt-footer {
    text-align: center;
    margin-top: 15px;
    border-top: 1px dashed #000;
    padding-top: 10px;
}

@media (max-width: 1024px) {
    .kasir-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* Import Product Styles */
.action-buttons-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-text {
    display: inline;
}

.file-input-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-input-wrapper input[type="file"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
}

.file-input-wrapper::before {
    content: "📁 Pilih File atau Drag & Drop di sini";
    display: block;
    padding: 20px;
    background-color: #f9f9f9;
    border: 2px dashed #4CAF50;
    border-radius: 5px;
    text-align: center;
    color: #666;
    cursor: pointer;
    transition: background-color 0.3s;
}

.file-input-wrapper:hover::before {
    background-color: #f0f8f0;
}

.file-input-wrapper.has-file::before {
    content: "✓ File Dipilih";
    background-color: #e8f5e9;
    border-color: #4CAF50;
    color: #2e7d32;
}

/* Import Progress Bar */
#progressBar {
    background-color: #4CAF50;
    height: 100%;
    width: 0%;
    transition: width 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/* Responsive Design for Import */
@media (max-width: 768px) {
    .action-buttons-group {
        flex-direction: column;
        width: 100%;
    }

    .action-buttons-group .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-text {
        display: inline;
    }

    .table-actions {
        flex-direction: column;
    }

    .search-box {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }

    .action-buttons-group {
        flex-direction: column;
        width: 100%;
    }

    .action-buttons-group .btn {
        width: 100%;
        font-size: 13px;
        padding: 10px;
    }

    .btn-text {
        display: block;
    }

    .file-input-wrapper::before {
        padding: 15px;
        font-size: 13px;
    }

    .table-header {
        flex-direction: column;
    }

    .table-actions {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   TOAST NOTIFICATION SYSTEM
   ============================================ */

#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    pointer-events: none;
    max-width: 400px;
}

@media (max-width: 768px) {
    #toast-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
        right: auto;
        max-width: 100%;
    }
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-icon {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.toast-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

.toast-progress {
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.toast-progress-bar {
    height: 100%;
    width: 100%;
    background: currentColor;
    border-radius: 2px;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    opacity: 1;
}

/* Toast Types - Success */
.toast-success {
    border-left: 4px solid #10B981;
}

.toast-success .toast-icon {
    background: #10B981;
}

.toast-success .toast-message {
    color: #065F46;
}

.toast-success .toast-progress-bar {
    background: #10B981 !important;
}

/* Toast Types - Error */
.toast-error {
    border-left: 4px solid #EF4444;
}

.toast-error .toast-icon {
    background: #EF4444;
}

.toast-error .toast-message {
    color: #7F1D1D;
}

.toast-error .toast-progress-bar {
    background: #EF4444 !important;
}

/* Toast Types - Warning */
.toast-warning {
    border-left: 4px solid #F59E0B;
}

.toast-warning .toast-icon {
    background: #F59E0B;
}

.toast-warning .toast-message {
    color: #78350F;
}

.toast-warning .toast-progress-bar {
    background: #F59E0B !important;
}

/* Toast Types - Info */
.toast-info {
    border-left: 4px solid #4F46E5;
}

.toast-info .toast-icon {
    background: #4F46E5;
}

.toast-info .toast-message {
    color: #312E81;
}

.toast-info .toast-progress-bar {
    background: #4F46E5 !important;
}

/* Toast with Confirm Buttons */
.toast-confirm {
    flex-direction: column;
}

.toast-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.toast-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    background: #E5E7EB;
    color: #374151;
}

.toast-btn:hover {
    background: #D1D5DB;
}

.toast-btn-confirm {
    background: #10B981;
    color: white;
}

.toast-btn-confirm:hover {
    background: #059669;
}

.toast-btn-cancel:hover {
    background: #D1D5DB;
}

/* Progress Bar Animation */
@keyframes progressAnimation {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

