/* /Layout/MainLayout.razor.rz.scp.css */
/* /Pages/DashBoardFolder/MyDebitNotes.razor.rz.scp.css */
/* ========== CONTAINER ========== */
.debitnotes-container[b-1icnojfe3c] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 2rem;
}

/* ========== HEADER ========== */
.debitnotes-header[b-1icnojfe3c] {
    margin-bottom: 1.5rem;
}

.debitnotes-title[b-1icnojfe3c] {
    margin: 0;
    color: #7c3aed;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .debitnotes-title i[b-1icnojfe3c] {
        font-size: 1.35rem;
    }

/* ========== ACTION BUTTONS ========== */
.debitnotes-actions[b-1icnojfe3c] {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.action-btn[b-1icnojfe3c] {
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .action-btn:hover[b-1icnojfe3c] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
    }

    .action-btn i[b-1icnojfe3c] {
        font-size: 0.95rem;
    }

/* ========== SUMMARY CARDS ========== */
.summary-cards[b-1icnojfe3c] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.summary-card[b-1icnojfe3c] {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

    .summary-card:hover[b-1icnojfe3c] {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
        border-color: #7c3aed;
    }

    .summary-card.total[b-1icnojfe3c] {
        border-left: 4px solid #7c3aed;
    }

    .summary-card.balance[b-1icnojfe3c] {
        border-left: 4px solid #10b981;
    }

.summary-label[b-1icnojfe3c] {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .summary-label i[b-1icnojfe3c] {
        color: #7c3aed;
        font-size: 1rem;
    }

.summary-value[b-1icnojfe3c] {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

/* ========== CONTENT ========== */
.debitnotes-content[b-1icnojfe3c] {
    background: white;
}

/* ========== TABLE ========== */
.debitnotes-table-wrapper[b-1icnojfe3c] {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.debitnotes-table[b-1icnojfe3c] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    .debitnotes-table thead th[b-1icnojfe3c] {
        background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
        padding: 1.25rem 1rem;
        font-size: 0.875rem;
        font-weight: 700;
        color: #374151;
        text-align: left;
        border-bottom: 2px solid #e5e7eb;
        position: sticky;
        top: 0;
        z-index: 10;
    }

        .debitnotes-table thead th:first-child[b-1icnojfe3c] {
            border-top-left-radius: 12px;
        }

        .debitnotes-table thead th:last-child[b-1icnojfe3c] {
            border-top-right-radius: 12px;
        }

        .debitnotes-table thead th i[b-1icnojfe3c] {
            margin-right: 0.5rem;
            color: #7c3aed;
        }

    .debitnotes-table tbody tr[b-1icnojfe3c] {
        transition: all 0.2s ease;
        cursor: pointer;
        border-bottom: 1px solid #f3f4f6;
    }

        .debitnotes-table tbody tr:hover[b-1icnojfe3c] {
            background: linear-gradient(135deg, #faf5ff 0%, #f9fafb 100%);
            transform: scale(1.01);
        }

        .debitnotes-table tbody tr:last-child[b-1icnojfe3c] {
            border-bottom: none;
        }

    .debitnotes-table tbody td[b-1icnojfe3c] {
        padding: 1.25rem 1rem;
        font-size: 0.9rem;
        color: #374151;
        vertical-align: middle;
    }

/* ========== DEBIT NOTE DATE ========== */
.debitnote-date[b-1icnojfe3c] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-weight: 500;
}

    .debitnote-date i[b-1icnojfe3c] {
        color: #7c3aed;
        font-size: 0.95rem;
    }

/* ========== DEBIT NOTE NUMBER ========== */
.debitnote-number[b-1icnojfe3c] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #6b7280 !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .debitnote-number:hover[b-1icnojfe3c] {
        transform: translateX(3px);
        box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
        color: black !important;
    }

    .debitnote-number i[b-1icnojfe3c] {
        font-size: 0.9rem;
    }

/* ========== RISK BADGE ========== */
.risk-badge[b-1icnojfe3c] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .risk-badge i[b-1icnojfe3c] {
        font-size: 0.95rem;
    }

    .risk-badge.motor[b-1icnojfe3c] {
        background: #dbeafe;
        color: #1e40af;
        border: 1px solid #bfdbfe;
    }

    .risk-badge.fire[b-1icnojfe3c] {
        background: #fee2e2;
        color: #991b1b;
        border: 1px solid #fecaca;
    }

    .risk-badge.health[b-1icnojfe3c] {
        background: #dcfce7;
        color: #166534;
        border: 1px solid #bbf7d0;
    }

    .risk-badge.life[b-1icnojfe3c] {
        background: #fef3c7;
        color: #92400e;
        border: 1px solid #fde68a;
    }

    .risk-badge.other[b-1icnojfe3c] {
        background: #f3f4f6;
        color: #374151;
        border: 1px solid #e5e7eb;
    }

/* ========== BALANCE AMOUNT ========== */
.balance-amount[b-1icnojfe3c] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #10b981;
}

    .balance-amount.overdue[b-1icnojfe3c] {
        color: #ef4444;
    }

    .balance-amount i[b-1icnojfe3c] {
        font-size: 1rem;
    }

/* ========== EMPTY STATE ========== */
.empty-state[b-1icnojfe3c] {
    text-align: center;
    padding: 4rem 2rem;
}

    .empty-state i[b-1icnojfe3c] {
        font-size: 5rem;
        color: #d1d5db;
        margin-bottom: 1.5rem;
        display: block;
    }

    .empty-state h4[b-1icnojfe3c] {
        color: #6b7280;
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .empty-state p[b-1icnojfe3c] {
        color: #9ca3af;
        font-size: 1rem;
    }

/* ========== SCROLLBAR ========== */
.debitnotes-table-wrapper[b-1icnojfe3c]::-webkit-scrollbar {
    height: 8px;
}

.debitnotes-table-wrapper[b-1icnojfe3c]::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.debitnotes-table-wrapper[b-1icnojfe3c]::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

    .debitnotes-table-wrapper[b-1icnojfe3c]::-webkit-scrollbar-thumb:hover {
        background: #9ca3af;
    }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .debitnotes-container[b-1icnojfe3c] {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .debitnotes-title[b-1icnojfe3c] {
        font-size: 1.25rem;
    }

    .debitnotes-actions[b-1icnojfe3c] {
        flex-direction: column;
        margin-top: 1rem;
    }

    .action-btn[b-1icnojfe3c] {
        width: 100%;
        justify-content: center;
    }

    .summary-cards[b-1icnojfe3c] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .summary-value[b-1icnojfe3c] {
        font-size: 1.75rem;
    }

    .debitnotes-table thead th[b-1icnojfe3c],
    .debitnotes-table tbody td[b-1icnojfe3c] {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }

    .debitnote-number[b-1icnojfe3c] {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .risk-badge[b-1icnojfe3c] {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .balance-amount[b-1icnojfe3c] {
        font-size: 1rem;
    }
}

@media print {
    .debitnotes-actions[b-1icnojfe3c],
    .action-btn[b-1icnojfe3c] {
        display: none !important;
    }

    .debitnotes-container[b-1icnojfe3c] {
        box-shadow: none;
        border: none;
    }

    .debitnotes-table tbody tr:hover[b-1icnojfe3c] {
        background: white;
        transform: none;
    }
}
/* /Pages/DashBoardFolder/RecentClients.razor.rz.scp.css */
/* Container */
.recent-clients-container[b-zz0p2dztqf] {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Loading State */
.loading-state[b-zz0p2dztqf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    min-height: 300px;
}

.loading-spinner[b-zz0p2dztqf] {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f4f6;
    border-top-color: #0C8041;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@@keyframes spin {
    to[b-zz0p2dztqf] {
        transform: rotate(360deg);
    }
}

.loading-text[b-zz0p2dztqf] {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Empty State */
.empty-state[b-zz0p2dztqf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    min-height: 300px;
    text-align: center;
}

.empty-state-icon[b-zz0p2dztqf] {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-state-title[b-zz0p2dztqf] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.empty-state-text[b-zz0p2dztqf] {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Clients List */
.clients-list[b-zz0p2dztqf] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden; /* Prevent horizontal scroll */
    max-height: 450px;
}

.client-item[b-zz0p2dztqf] {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    gap: 1rem;
    overflow-x: hidden; /* Prevent horizontal scroll on items */
}

    .client-item:last-child[b-zz0p2dztqf] {
        border-bottom: none;
    }

    .client-item:hover[b-zz0p2dztqf] {
        background-color: #f9fafb;
        transform: translateX(4px);
    }

/* Client Avatar */
.client-avatar[b-zz0p2dztqf] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0C8041 0%, #096633 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(12, 128, 65, 0.2);
}

/* Client Info */
.client-info[b-zz0p2dztqf] {
    flex: 1;
    min-width: 0; /* Critical: allows text truncation to work */
    overflow: hidden; /* Prevent content overflow */
}

.client-name[b-zz0p2dztqf] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.client-item:hover .client-name[b-zz0p2dztqf] {
    color: #0C8041;
}

.client-id[b-zz0p2dztqf] {
    font-size: 0.813rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden; /* Prevent overflow */
    text-overflow: ellipsis; /* Add ellipsis */
}

    .client-id i[b-zz0p2dztqf] {
        font-size: 0.75rem;
        flex-shrink: 0; /* Keep icon size */
    }

    .client-id span[b-zz0p2dztqf] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Client Meta */
.client-meta[b-zz0p2dztqf] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
    min-width: 0; /* Changed from 120px - allows shrinking */
    flex-shrink: 0; /* Prevent meta from shrinking too much */
    white-space: nowrap; /* Prevent text wrapping */
}

.client-date[b-zz0p2dztqf] {
    font-size: 0.813rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

    .client-date i[b-zz0p2dztqf] {
        font-size: 0.75rem;
        color: #9ca3af;
    }

.client-badge[b-zz0p2dztqf] {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    max-width: 120px; /* Limit badge width */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Chevron */
.client-chevron[b-zz0p2dztqf] {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-left: 0.5rem;
    transition: all 0.2s ease;
    flex-shrink: 0; /* Never shrink chevron */
}

.client-item:hover .client-chevron[b-zz0p2dztqf] {
    color: #0C8041;
    transform: translateX(4px);
}

/* Footer */
.clients-footer[b-zz0p2dztqf] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f3f4f6;
    background: #fafafa;
    text-align: center;
}

.view-all-btn[b-zz0p2dztqf] {
    background: none;
    border: none;
    color: #0C8041;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .view-all-btn:hover[b-zz0p2dztqf] {
        background: #f0fdf4;
        transform: translateY(-1px);
    }

    .view-all-btn i:last-child[b-zz0p2dztqf] {
        transition: transform 0.2s ease;
    }

    .view-all-btn:hover i:last-child[b-zz0p2dztqf] {
        transform: translateX(4px);
    }

/* Responsive */
@media (max-width: 768px) {
    .client-item[b-zz0p2dztqf] {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .client-meta[b-zz0p2dztqf] {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid #f3f4f6;
        min-width: 0; /* Keep allowing shrinkage */
    }

    .client-chevron[b-zz0p2dztqf] {
        display: none;
    }
}
/* /Pages/DashBoardFolder/RecentPolicies.razor.rz.scp.css */
/* Container */
.recent-policies-container[b-x2l824qcw8] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Loading State */
.loading-state[b-x2l824qcw8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    min-height: 300px;
}

.loading-spinner[b-x2l824qcw8] {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f4f6;
    border-top-color: #0C8041;
    border-radius: 50%;
    animation: spin-b-x2l824qcw8 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-x2l824qcw8 {
    to {
        transform: rotate(360deg);
    }
}

.loading-text[b-x2l824qcw8] {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Empty State */
.empty-state[b-x2l824qcw8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    min-height: 300px;
    text-align: center;
}

.empty-state-icon[b-x2l824qcw8] {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-state-title[b-x2l824qcw8] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.empty-state-text[b-x2l824qcw8] {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Policies List */
.policies-list[b-x2l824qcw8] {
    flex: 1;
    overflow-y: auto;
    max-height: 450px;
}

.policy-item[b-x2l824qcw8] {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    gap: 1rem;
}

    .policy-item:last-child[b-x2l824qcw8] {
        border-bottom: none;
    }

    .policy-item:hover[b-x2l824qcw8] {
        background-color: #f9fafb;
        transform: translateX(4px);
    }

/* Policy Icon */
.policy-icon[b-x2l824qcw8] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

    .policy-icon.fire[b-x2l824qcw8] {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    }

    .policy-icon.motor[b-x2l824qcw8] {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    }

    .policy-icon.health[b-x2l824qcw8] {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

    .policy-icon.life[b-x2l824qcw8] {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }

    .policy-icon.other[b-x2l824qcw8] {
        background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    }

/* Policy Info */
.policy-info[b-x2l824qcw8] {
    flex: 1;
    min-width: 0;
}

.policy-holder[b-x2l824qcw8] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.375rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.policy-item:hover .policy-holder[b-x2l824qcw8] {
    color: #0C8041;
}

.policy-detail[b-x2l824qcw8] {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.25rem;
}

    .policy-detail:last-child[b-x2l824qcw8] {
        margin-bottom: 0;
    }

    .policy-detail i[b-x2l824qcw8] {
        font-size: 0.7rem;
        width: 12px;
    }

/* Risk Badge */
.risk-badge[b-x2l824qcw8] {
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
}

    .risk-badge.fire[b-x2l824qcw8] {
        background: #fee2e2;
        color: #dc2626;
    }

    .risk-badge.motor[b-x2l824qcw8] {
        background: #dbeafe;
        color: #2563eb;
    }

    .risk-badge.health[b-x2l824qcw8] {
        background: #d1fae5;
        color: #059669;
    }

    .risk-badge.life[b-x2l824qcw8] {
        background: #ede9fe;
        color: #7c3aed;
    }

    .risk-badge.other[b-x2l824qcw8] {
        background: #f3f4f6;
        color: #4b5563;
    }

/* Policy Meta */
.policy-meta[b-x2l824qcw8] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 140px;
}

.policy-date[b-x2l824qcw8] {
    font-size: 0.813rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

    .policy-date i[b-x2l824qcw8] {
        font-size: 0.75rem;
        color: #9ca3af;
    }

.policy-user-badge[b-x2l824qcw8] {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Chevron */
.policy-chevron[b-x2l824qcw8] {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.policy-item:hover .policy-chevron[b-x2l824qcw8] {
    color: #0C8041;
    transform: translateX(4px);
}

/* Footer */
.policies-footer[b-x2l824qcw8] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f3f4f6;
    background: #fafafa;
    text-align: center;
}

.view-all-btn[b-x2l824qcw8] {
    background: none;
    border: none;
    color: #0C8041;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .view-all-btn:hover[b-x2l824qcw8] {
        background: #f0fdf4;
        transform: translateY(-1px);
    }

    .view-all-btn i:last-child[b-x2l824qcw8] {
        transition: transform 0.2s ease;
    }

    .view-all-btn:hover i:last-child[b-x2l824qcw8] {
        transform: translateX(4px);
    }

/* Responsive */
@media (max-width: 768px) {
    .policy-item[b-x2l824qcw8] {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .policy-meta[b-x2l824qcw8] {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid #f3f4f6;
    }

    .risk-badge[b-x2l824qcw8] {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .policy-chevron[b-x2l824qcw8] {
        display: none;
    }
}
/* /Pages/PolicyFolder/AllPolicies.razor.rz.scp.css */
.policy-link:hover[b-eyi0ytdtlc] {
    color: var(--bs-primary) !important;
    text-decoration: underline !important;
}

.modern-grid .rz-datatable-data td[b-eyi0ytdtlc] {
    vertical-align: middle;
}

.card[b-eyi0ytdtlc] {
    transition: box-shadow 0.3s ease;
}

    .card:hover[b-eyi0ytdtlc] {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
    }



/* /Pages/SecurityFolder/Login.razor.rz.scp.css */


/* Login Page Container */
.login-page[b-3w9l5knq8u] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 1rem;
}

.login-card[b-3w9l5knq8u] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    padding: 3rem 2.5rem;
}

.login-logo[b-3w9l5knq8u] {
    text-align: center;
    margin-bottom: 2rem;
}

    .login-logo img[b-3w9l5knq8u] {
        max-width: 180px;
        height: auto;
        object-fit: contain;
    }

.login-header[b-3w9l5knq8u] {
    text-align: center;
    margin-bottom: 2rem;
}

    .login-header h3[b-3w9l5knq8u] {
        font-size: 1.75rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.5rem;
    }

    .login-header p[b-3w9l5knq8u] {
        color: #6b7280;
        font-size: 0.95rem;
        margin: 0;
    }

/* Form Styles */
.form-focus[b-3w9l5knq8u] {
    position: relative;
    margin-bottom: 1.5rem;
}

    .form-focus[b-3w9l5knq8u]  .form-control {
        width: 100%;
        height: 56px;
        padding: 1.5rem 1rem 0.5rem;
    }

    .form-focus .focus-label[b-3w9l5knq8u] {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.2s ease;
        pointer-events: none;
        color: #9ca3af;
    }

    .form-focus[b-3w9l5knq8u]  .form-control:focus + .focus-label,
    .form-focus[b-3w9l5knq8u]  .form-control:not(:placeholder-shown) + .focus-label {
        top: 0.5rem;
        transform: translateY(0);
        font-size: 0.75rem;
        color: #0C8041;
    }

/* Password Toggle */
.btn-password-toggle[b-3w9l5knq8u] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-password-toggle:hover:not(:disabled)[b-3w9l5knq8u] {
        color: #0C8041;
    }

    .btn-password-toggle:disabled[b-3w9l5knq8u] {
        cursor: not-allowed;
        opacity: 0.4;
    }

/* Disclaimer */
.disclaimer-group[b-3w9l5knq8u] {
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.disclaimer-label[b-3w9l5knq8u] {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 0;
}

.disclaimer-checkbox[b-3w9l5knq8u] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0C8041;
}

.disclaimer-text[b-3w9l5knq8u] {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.5;
}

/* Login Button */
.account-btn[b-3w9l5knq8u] {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #0C8041 0%, #096633 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 128, 65, 0.3);
}

    .account-btn:hover:not(:disabled)[b-3w9l5knq8u] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(12, 128, 65, 0.4);
    }

    .account-btn:active:not(:disabled)[b-3w9l5knq8u] {
        transform: translateY(0);
    }

    .account-btn:disabled[b-3w9l5knq8u] {
        cursor: not-allowed;
        opacity: 0.7;
        transform: none;
    }

/* Forgot Password */
.forgot-password[b-3w9l5knq8u] {
    text-align: center;
    margin-top: 1.25rem;
}

    .forgot-password a[b-3w9l5knq8u] {
        color: #6b7280;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

        .forgot-password a:hover[b-3w9l5knq8u] {
            color: #0C8041;
            text-decoration: underline;
        }

/* Debug Badge */
.debug-indicator[b-3w9l5knq8u] {
    margin-top: 1.5rem;
    text-align: center;
}

    .debug-indicator .badge[b-3w9l5knq8u] {
        background: #fee2e2;
        color: #dc2626;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 500;
    }

/* Validation Messages */
.validation-message[b-3w9l5knq8u] {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 0.375rem;
    display: block;
}

/* Responsive */
@media (max-width: 576px) {
    .login-card[b-3w9l5knq8u] {
        padding: 2rem 1.5rem;
    }

    .login-header h3[b-3w9l5knq8u] {
        font-size: 1.5rem;
    }

    .login-logo img[b-3w9l5knq8u] {
        max-width: 150px;
    }
}
/* /Pages/SecurityFolder/OTP.razor.rz.scp.css */

/* OTP Page Container */
.otp-page[b-l0mlpj9jb7] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 1rem;
}

.otp-card[b-l0mlpj9jb7] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 480px;
    padding: 3rem 2.5rem;
}

/* Logo */
.otp-logo[b-l0mlpj9jb7] {
    text-align: center;
    margin-bottom: 2rem;
}

    .otp-logo img[b-l0mlpj9jb7] {
        max-width: 140px;
        height: auto;
        object-fit: contain;
    }

/* Header */
.otp-header[b-l0mlpj9jb7] {
    text-align: center;
    margin-bottom: 2.5rem;
}

.otp-title[b-l0mlpj9jb7] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.otp-subtitle[b-l0mlpj9jb7] {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.email-display[b-l0mlpj9jb7] {
    color: #0C8041;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

/* OTP Input */
.otp-input-container[b-l0mlpj9jb7] {
    margin: 2.5rem 0;
}

.digit-group[b-l0mlpj9jb7] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.otp-digit[b-l0mlpj9jb7] {
    width: 56px;
    height: 64px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.2s ease;
    background: #f9fafb;
}

    .otp-digit:focus[b-l0mlpj9jb7] {
        outline: none;
        border-color: #0C8041;
        background: white;
        box-shadow: 0 0 0 3px rgba(12, 128, 65, 0.1);
    }

    .otp-digit:disabled[b-l0mlpj9jb7] {
        background-color: #f3f4f6;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .otp-digit.filled[b-l0mlpj9jb7] {
        border-color: #0C8041;
        background-color: #f0fdf4;
    }

/* Resend Section */
.resend-timer[b-l0mlpj9jb7] {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.9rem;
    font-weight: 500;
}

.resend-section[b-l0mlpj9jb7] {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.btn-resend[b-l0mlpj9jb7] {
    background: none;
    border: none;
    color: #0C8041;
    font-weight: 600;
    cursor: pointer;
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 4px;
}

    .btn-resend:hover:not(:disabled)[b-l0mlpj9jb7] {
        background: #f0fdf4;
        text-decoration: none;
    }

    .btn-resend:disabled[b-l0mlpj9jb7] {
        cursor: not-allowed;
        opacity: 0.5;
    }

/* Verify Button */
.account-btn[b-l0mlpj9jb7] {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #0C8041 0%, #096633 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 128, 65, 0.3);
    margin-top: 1rem;
}

    .account-btn:hover:not(:disabled)[b-l0mlpj9jb7] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(12, 128, 65, 0.4);
    }

    .account-btn:active:not(:disabled)[b-l0mlpj9jb7] {
        transform: translateY(0);
    }

    .account-btn:disabled[b-l0mlpj9jb7] {
        cursor: not-allowed;
        opacity: 0.6;
        transform: none;
    }

/* Back to Login */
.back-to-login[b-l0mlpj9jb7] {
    text-align: center;
    margin-top: 1.5rem;
}

    .back-to-login a[b-l0mlpj9jb7] {
        color: #6b7280;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

        .back-to-login a:hover[b-l0mlpj9jb7] {
            color: #0C8041;
        }

/* Responsive */
@media (max-width: 576px) {
    .otp-card[b-l0mlpj9jb7] {
        padding: 2rem 1.5rem;
    }

    .otp-logo img[b-l0mlpj9jb7] {
        max-width: 120px;
    }

    .otp-title[b-l0mlpj9jb7] {
        font-size: 1.5rem;
    }

    .otp-digit[b-l0mlpj9jb7] {
        width: 48px;
        height: 56px;
        font-size: 24px;
    }

    .digit-group[b-l0mlpj9jb7] {
        gap: 6px;
    }
}

/* Animation for invalid OTP */
@keyframes shake-b-l0mlpj9jb7 {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.otp-error[b-l0mlpj9jb7] {
    animation: shake-b-l0mlpj9jb7 0.5s;
}

/* Success state */
@keyframes pulse-b-l0mlpj9jb7 {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.otp-success[b-l0mlpj9jb7] {
    animation: pulse-b-l0mlpj9jb7 0.3s;
}

/* /Pages/SecurityFolder/ResendOTP.razor.rz.scp.css */
.resend-otp-container[b-uvnhs2oba6] {
    padding: 1.5rem;
    max-width: 100%;
}

.resend-header[b-uvnhs2oba6] {
    text-align: center;
    margin-bottom: 1rem;
}

    .resend-header h4[b-uvnhs2oba6] {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.5rem;
    }

    .resend-header p[b-uvnhs2oba6] {
        font-size: 0.875rem;
        color: #6b7280;
        margin: 0;
    }

.delivery-options[b-uvnhs2oba6] {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.option-item[b-uvnhs2oba6] {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

    .option-item:last-child[b-uvnhs2oba6] {
        border-bottom: none;
    }

    .option-item:hover[b-uvnhs2oba6] {
        background-color: #f9fafb;
    }

.option-icon[b-uvnhs2oba6] {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

    .option-icon.email[b-uvnhs2oba6] {
        background: #eff6ff;
        color: #3b82f6;
    }

    .option-icon.sms[b-uvnhs2oba6] {
        background: #f0fdf4;
        color: #0C8041;
    }

    .option-icon.whatsapp[b-uvnhs2oba6] {
        background: #f0fdf4;
        color: #25D366;
    }

.option-item.active .option-icon.email[b-uvnhs2oba6] {
    background: #3b82f6;
    color: white;
}

.option-item.active .option-icon.sms[b-uvnhs2oba6] {
    background: #0C8041;
    color: white;
}

.option-item.active .option-icon.whatsapp[b-uvnhs2oba6] {
    background: #25D366;
    color: white;
}

.option-content[b-uvnhs2oba6] {
    flex: 1;
    margin-left: 1rem;
}

.option-title[b-uvnhs2oba6] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.option-description[b-uvnhs2oba6] {
    font-size: 0.8rem;
    color: #6b7280;
}

.option-toggle[b-uvnhs2oba6] {
    flex-shrink: 0;
}

.info-message[b-uvnhs2oba6] {
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

    .info-message i[b-uvnhs2oba6] {
        color: #d97706;
        font-size: 1rem;
        flex-shrink: 0;
        margin-top: 0.125rem;
    }

    .info-message span[b-uvnhs2oba6] {
        font-size: 0.813rem;
        color: #92400e;
        line-height: 1.5;
    }

.send-button[b-uvnhs2oba6] {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #0C8041 0%, #096633 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 128, 65, 0.3);
    margin-top: 1rem;
}

    .send-button:hover:not(:disabled)[b-uvnhs2oba6] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(12, 128, 65, 0.4);
    }

    .send-button:active:not(:disabled)[b-uvnhs2oba6] {
        transform: translateY(0);
    }

    .send-button:disabled[b-uvnhs2oba6] {
        cursor: not-allowed;
        opacity: 0.6;
        transform: none;
    }

.selection-summary[b-uvnhs2oba6] {
    text-align: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

    .selection-summary strong[b-uvnhs2oba6] {
        color: #0C8041;
        font-weight: 600;
    }

/* Radzen Switch Customization */
[b-uvnhs2oba6] .rz-switch {
    transform: scale(1.1);
}

    [b-uvnhs2oba6] .rz-switch .rz-switch-circle {
        background-color: white;
    }

    [b-uvnhs2oba6] .rz-switch.rz-state-on {
        background-color: #0C8041 !important;
    }

    [b-uvnhs2oba6] .rz-switch.rz-state-off {
        background-color: #d1d5db !important;
    }
/* /Pages/SecurityFolder/ResetPassword.razor.rz.scp.css */

/* Reset Password Page Container */
.reset-page[b-f781joxhn1] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 1rem;
}

.reset-card[b-f781joxhn1] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    padding: 3rem 2.5rem;
}

/* Logo */
.reset-logo[b-f781joxhn1] {
    text-align: center;
    margin-bottom: 2rem;
}

    .reset-logo img[b-f781joxhn1] {
        max-width: 140px;
        height: auto;
        object-fit: contain;
    }

/* Header */
.reset-header[b-f781joxhn1] {
    text-align: center;
    margin-bottom: 2rem;
}

.reset-title[b-f781joxhn1] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.reset-subtitle[b-f781joxhn1] {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Step Indicator */
.step-indicator[b-f781joxhn1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
}

.step[b-f781joxhn1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
}

.step-number[b-f781joxhn1] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
}

.step.active .step-number[b-f781joxhn1] {
    background: #0C8041;
    color: white;
    box-shadow: 0 0 0 4px rgba(12, 128, 65, 0.15);
    border-color: #0C8041;
}

.step.completed .step-number[b-f781joxhn1] {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

    .step.completed .step-number[b-f781joxhn1]::after {
        content: "✓";
        position: absolute;
        font-size: 1.1rem;
    }

.step.completed .step-number[b-f781joxhn1] {
    font-size: 0;
}

.step-label[b-f781joxhn1] {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    text-align: center;
}

.step.active .step-label[b-f781joxhn1] {
    color: #0C8041;
    font-weight: 600;
}

.step.completed .step-label[b-f781joxhn1] {
    color: #10b981;
}

.step-line[b-f781joxhn1] {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 0.5rem;
    margin-bottom: 1.8rem;
    transition: all 0.3s ease;
}

    .step-line.completed[b-f781joxhn1] {
        background: #10b981;
    }

/* Form Styling */
/* Form Styles */
.form-focus[b-f781joxhn1] {
    position: relative;
    margin-bottom: 1.5rem;
}

    .form-focus[b-f781joxhn1]  .form-control {
        width: 100%;
        height: 56px;
        padding: 1.5rem 1rem 0.5rem;
    }

    .form-focus .focus-label[b-f781joxhn1] {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.2s ease;
        pointer-events: none;
        color: #9ca3af;
    }

    .form-focus[b-f781joxhn1]  .form-control:focus + .focus-label,
    .form-focus[b-f781joxhn1]  .form-control:not(:placeholder-shown) + .focus-label {
        top: 0.5rem;
        transform: translateY(0);
        font-size: 0.75rem;
        color: #0C8041;
    }

.btn-password-toggle[b-f781joxhn1] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

    .btn-password-toggle:hover:not(:disabled)[b-f781joxhn1] {
        color: #0C8041;
    }

    .btn-password-toggle:disabled[b-f781joxhn1] {
        cursor: not-allowed;
        opacity: 0.4;
    }

/* Info Box */
.info-box[b-f781joxhn1] {
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #065f46;
    font-size: 0.875rem;
}

    .info-box i[b-f781joxhn1] {
        font-size: 1.125rem;
        flex-shrink: 0;
        color: #0C8041;
    }

/* Password Strength Indicator */
.password-strength[b-f781joxhn1] {
    margin-bottom: 1.25rem;
}

.strength-bar[b-f781joxhn1] {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill[b-f781joxhn1] {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 3px;
}

    .strength-fill.weak[b-f781joxhn1] {
        background: #ef4444;
    }

    .strength-fill.fair[b-f781joxhn1] {
        background: #f59e0b;
    }

    .strength-fill.good[b-f781joxhn1] {
        background: #3b82f6;
    }

    .strength-fill.strong[b-f781joxhn1] {
        background: #10b981;
    }

.strength-label[b-f781joxhn1] {
    font-size: 0.813rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .strength-label.weak[b-f781joxhn1] {
        color: #ef4444;
    }

    .strength-label.fair[b-f781joxhn1] {
        color: #f59e0b;
    }

    .strength-label.good[b-f781joxhn1] {
        color: #3b82f6;
    }

    .strength-label.strong[b-f781joxhn1] {
        color: #10b981;
    }

/* Button Styling */
.account-btn[b-f781joxhn1] {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #0C8041 0%, #096633 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 128, 65, 0.3);
}

    .account-btn:hover:not(:disabled)[b-f781joxhn1] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(12, 128, 65, 0.4);
    }

    .account-btn:active:not(:disabled)[b-f781joxhn1] {
        transform: translateY(0);
    }

    .account-btn:disabled[b-f781joxhn1] {
        cursor: not-allowed;
        opacity: 0.6;
        transform: none;
    }

/* Back Link */
.back-link[b-f781joxhn1] {
    text-align: center;
    margin-top: 1.5rem;
}

    .back-link a[b-f781joxhn1] {
        color: #6b7280;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

        .back-link a:hover[b-f781joxhn1] {
            color: #0C8041;
        }

.validation-message[b-f781joxhn1] {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.375rem;
    display: block;
}

/* Responsive */
@media (max-width: 576px) {
    .reset-card[b-f781joxhn1] {
        padding: 2rem 1.5rem;
    }

    .reset-logo img[b-f781joxhn1] {
        max-width: 120px;
    }

    .reset-title[b-f781joxhn1] {
        font-size: 1.5rem;
    }

    .step-indicator[b-f781joxhn1] {
        padding: 0;
    }

    .step-label[b-f781joxhn1] {
        font-size: 0.7rem;
    }

    .step-number[b-f781joxhn1] {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .step-line[b-f781joxhn1] {
        margin: 0 0.25rem;
    }
}

