/* 
========================================
   BANKING DASHBOARD STYLESHEET
   Theme: Modern Dark Blue & Pink Integration
========================================
*/

:root {
    /* --- 1. NEW DESIGN PALETTE (Definitions) --- */
    --brand-dark-blue: #092c5c;
    --brand-pink:      #ed3269;
    --brand-purple:    #8A42D1;
    
    --brand-bg-light:  #f8f9fa;
    --brand-white:     #ffffff;
    
    --brand-text-dark: #0f2031;
    --brand-text-gray: #6c757d;
    --brand-border:    #e9ecef;

    /* --- 2. LOGIC MAPPING (Connecting Old HTML to New Colors) --- */
    
    /* Main Action Color (Replaces old 'Green' with your new Pink) */
    --primary-green: var(--brand-pink);
    
    /* Static Headers/Nav (Replaces old header color with Dark Blue) */
    --primary-green-static: var(--brand-dark-blue);

    /* Light Backgrounds for Hovers (Transparent Pink) */
    --light-green-bg: rgba(237, 50, 105, 0.08); 

    /* Money/Credit Text Color */
    --credit-color: var(--brand-purple);

    /* Layout Colors */
    --bg-color: var(--brand-bg-light);
    --content-bg-color: var(--brand-white);
    --border-color: var(--brand-border);
    
    /* Typography */
    --text-color: var(--brand-text-dark);
    --text-light: var(--brand-text-gray);

    /* UI Elements */
    --border-radius: 8px;
    
    /* Error/Success States */
    --error-color: #d32f2f;
    --success-color: #2e7d32;
}

/* --- DARK MODE OVERRIDES --- */
body.dark-mode {
    /* Adjusting the new palette for dark environments */
    --primary-green: #ff6b95; /* Lighter Pink for dark backgrounds */
    --primary-green-static: #1a3a6e; /* Lighter Blue */
    
    --bg-color: #051224; /* Very dark blue (almost black) */
    --content-bg-color: #0f2031; /* Matching your text-dark for card backgrounds */

    --text-color: #ffffff;
    --text-light: #a0aec0;

    --border-color: rgba(255, 255, 255, 0.1);
    --light-green-bg: rgba(237, 50, 105, 0.15);
    
    --credit-color: #b779f0; /* Lighter Purple */
    --error-color: #f44336;
}

/* 
========================================
   CORE TYPOGRAPHY & LAYOUT
========================================
*/

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    z-index: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Subtle gradient using your new Pink */
    background-image: radial-gradient(circle at 75% 40%, rgba(237, 50, 105, 0.05), transparent 40%),
                      radial-gradient(circle at 10% 20%, rgba(9, 44, 92, 0.05), transparent 30%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

body.dark-mode::before {
    opacity: 1;
}

/* --- HEADER & NAVIGATION --- */
.top-header { background-color: var(--primary-green-static); color: white; }

/* --- LOGO --- */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: -1px;
}

/* --- DESKTOP NAVIGATION --- */
.main-navigation {
    background-color: var(--content-bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-toggle, .close-menu-btn {
    display: none; /* Hidden on desktop */
}
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}
.nav-links li a {
    display: block;
    padding: 22px 5px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    border-bottom: 3px solid transparent;
}
.nav-links li a.active,
.nav-links li a:hover {
    border-bottom-color: var(--primary-green);
}
.nav-links li a i {
    margin-left: 8px;
    font-size: 0.7rem;
}

/* --- MAIN CONTENT (Generic styles) --- */
.account-title .fa-star, .account-title p span, .help-icon, .more-filters, .download-button { color: var(--primary-green); }
.help-icon { border: 2px solid var(--primary-green); }
.account-actions-tabs a { background-color: var(--light-green-bg); border: 1px solid var(--border-color); color: var(--text-color); }
.account-actions-tabs a.active { border-top: 3px solid var(--primary-green); background-color: var(--content-bg-color); }
body.dark-mode .account-actions-tabs a { color: var(--primary-green); }
body.dark-mode .account-actions-tabs a.active { color: var(--text-color); }
.transfer-buttons button { background-color: transparent; border: 1px solid var(--primary-green); color: var(--primary-green); transition: all 0.3s; }
.transfer-buttons button:hover { background-color: var(--primary-green); color: #ffffff; }
.activity-filters { background-color: var(--content-bg-color); border-bottom: 1px solid var(--border-color); }
.search-box input { background-color: var(--bg-color); color: var(--text-color); border: 1px solid var(--border-color); }
.transactions-table { background-color: var(--content-bg-color); }
.transactions-table th, .transactions-table td { border-bottom: 1px solid var(--border-color); }
.transactions-table thead { background-color: transparent; color: var(--text-light); }
.description-cell .icon { color: var(--primary-green); }
.credit { color: var(--credit-color); }
.top-header { padding: 10px 30px; display: flex; justify-content: flex-end; align-items: center; }
.header-nav { display: flex; align-items: center; gap: 25px; }
.header-nav .icon-button { position: relative; font-size: 1.2rem; cursor: pointer; }
.notification-badge { position: absolute; top: -5px; right: -8px; background-color: #e53935; color: white; border-radius: 50%; width: 16px; height: 16px; font-size: 10px; display: flex; justify-content: center; align-items: center; font-weight: bold; }
.user-profile { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.user-profile .fa-chevron-down { font-size: 0.8rem; }
.main-container { max-width: 1200px; margin: 25px auto; padding: 0 30px; min-height: 100vh}
.account-summary { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 25px; }
.account-title h1 { margin: 0 0 5px 0; font-size: 24px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.account-title p { margin: 0; color: var(--text-light); }
.account-title p span { font-weight: 600; cursor: pointer; text-decoration: underline; }
.account-balance { text-align: right; }
.balance-amount { font-size: 32px; font-weight: 700; display: flex; align-items: center; gap: 15px; }
.balance-amount .fa-rotate { color: var(--text-light); cursor: pointer; }
.balance-info { font-size: 12px; margin-top: 5px; color: var(--text-light); }
.balance-info .fa-info-circle { margin-right: 5px; }
.help-icon { border-radius: 50%; width: 20px; height: 20px; display: inline-flex; justify-content: center; align-items: center; font-weight: bold; font-size: 12px; float: right; margin-top: -5px; cursor: pointer; }

/* --- QUICK ACTIONS --- */
.quick-actions-container {
    display: none; /* Hidden by default on large screens */
}
.quick-action-item {
    background-color: var(--content-bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.quick-action-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: var(--primary-green);
}
body.dark-mode .quick-action-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.quick-action-item i {
    font-size: 1.5rem; /* 24px */
    color: var(--primary-green);
}
.quick-action-item span {
    font-size: 13px;
}

/* --- CONTENT LAYOUT WRAPPER --- */
.content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.main-content-area {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}
.promo-sidebar {
    flex: 0 0 300px; /* Don't grow, don't shrink, 300px base width */
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px; /* Align with top of tabs */
}
.promo-card {
    background-color: var(--content-bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
}
.promo-card img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}
.promo-card h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
}
.promo-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 15px 0;
    line-height: 1.5;
}
.promo-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: opacity 0.2s;
}
.promo-button:hover {
    opacity: 0.85;
}
body.dark-mode .promo-button {
    color: #ffffff;
}

.account-actions-wrapper { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); }
.account-actions-tabs { display: flex; }
.account-actions-tabs a { padding: 12px 20px; text-decoration: none; border-bottom: none; margin-right: 2px; border-radius: var(--border-radius) var(--border-radius) 0 0; white-space: nowrap; font-weight: 500;}
.account-actions-tabs a.active { padding-top: 9px; position: relative; top: 1px; font-weight: 600; }
.transfer-buttons button { padding: 8px 15px; border-radius: var(--border-radius); cursor: pointer; font-weight: 600; margin-left: 10px; }
.activity-filters { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
.search-container { flex-grow: 1; display: flex; align-items: center; gap: 20px; }
.search-box { position: relative; }
.search-box input { padding: 10px 15px 10px 35px; border-radius: var(--border-radius); width: 250px; }
.search-box .fa-magnifying-glass { position: absolute; left: 12px; top: 12px; color: var(--text-light); }
.date-range { font-weight: 600; }
.more-filters { font-size: 12px; font-weight: 600; cursor: pointer; margin-top: 10px; }
.download-button { text-align: center; font-weight: 600; cursor: pointer; }
.download-button i { font-size: 1.5rem; display: block; margin-bottom: 5px; }
.transactions-table { width: 100%; border-collapse: collapse; }
.transactions-table th, .transactions-table td { padding: 15px; text-align: left; }
.transactions-table thead { font-size: 12px; font-weight: 600; }
.transactions-table th i { margin-left: 5px; }
.transactions-table td { vertical-align: top; }
.description-cell { display: flex; align-items: flex-start; gap: 15px; }
.description-cell .icon { font-size: 1.2rem; padding-top: 2px; }
.description-cell .text p { margin: 0; }
.description-cell .text p.main-desc { font-weight: 600; }
.description-cell .text p.sub-desc { font-size: 12px; color: var(--text-light); }
.category-cell { display: flex; justify-content: space-between; align-items: center; }
.category-cell i { color: var(--text-light); }
.text-right { text-align: right !important; }

/* --- TRANSACTIONS FOOTER / PAGINATION --- */
.transactions-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 10px;
    color: var(--text-light);
    font-size: 13px;
}
.pagination {
    display: flex;
    align-items: center;
    gap: 5px;
}
.pagination .page-link {
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--content-bg-color);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: background-color 0.2s, border-color 0.2s;
}
.pagination .page-link:hover {
    border-color: var(--primary-green);
    background-color: var(--light-green-bg);
}
.pagination .page-link.active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
}
body.dark-mode .pagination .page-link.active {
    color: #ffffff;
}
.pagination .page-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* --- FOOTER --- */
.site-footer {
    text-align: center;
    padding: 25px 30px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 13px;
}
.site-footer p {
    margin: 0;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    /* Hide sidebar on medium screens and below */
    .promo-sidebar {
        display: none;
    }

    /* --- HAMBURGER MENU --- */
    .main-navigation {
        padding: 10px 30px;
    }
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
        padding: 5px;
    }
    .close-menu-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 25px;
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 1.8rem;
        cursor: pointer;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background-color: var(--content-bg-color);
        z-index: 1000;
        padding: 80px 0 0 0; /* Increased top padding for close button */
        display: flex;
        flex-direction: column;
        gap: 10px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }
    .main-navigation.nav-open .nav-links {
        transform: translateX(0);
    }
    .nav-links li a {
        padding: 15px 30px;
        border: none; /* Reset desktop border */
    }
    .nav-links li a:hover {
        background-color: var(--light-green-bg);
    }
    .nav-links li a.active {
        color: var(--primary-green);
    }
}

@media (max-width: 768px) {
    .top-header, .main-navigation, .main-container { padding-left: 15px; padding-right: 15px; }
    .main-container { margin-top: 15px; }
    .account-summary { flex-direction: column; gap: 20px; align-items: center; }
    .account-balance { text-align: center; width: 100%; position: relative; }
    .balance-amount { font-size: 40px; justify-content: center; }
    .account-title { text-align: center; }
    .account-title .fa-star, .help-icon { display: none; }
    
    /* Show and style quick actions on small screens */
    .quick-actions-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin: 25px 0;
    }
    .quick-action-item {
        padding: 15px 5px;
    }

    .account-actions-wrapper { flex-direction: column; align-items: stretch; gap: 15px; border-bottom: none; margin-top: 0;}
    .account-actions-tabs { overflow-x: auto; padding-bottom: 5px; }
    .activity-filters { flex-direction: column; align-items: stretch; gap: 20px; }
    .search-container { flex-direction: column; align-items: stretch; gap: 15px; }
    .search-box input { width: 100%; box-sizing: border-box; }
    .date-range { text-align: center; }
    .table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .transactions-table th, .transactions-table td { white-space: nowrap; }

    /* Transactions footer responsive */
    .transactions-footer {
        flex-direction: column;
        gap: 15px;
    }
}
/*
========================================
    AUTHENTICATION PAGE STYLES
========================================
*/

/* --- Auth Page Layout --- */
.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    width: 100%;
}

/* --- Branding Column (Left) --- */
.branding-column {
    position: relative; /* Required for the overlay */
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1200');
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.9); /* Default text color for this column */
}

/* The dark overlay */
.branding-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 44, 92, 0.85); /* Using new Dark Blue */
    z-index: 1; /* Place overlay below content */
}

/* Ensure all direct children are on top of the overlay */
.branding-column > * {
    position: relative;
    z-index: 2;
}

.branding-content h2 {
    color: #FFFFFF; /* Brighter white for the main heading */
    font-size: 36px;
}

.branding-content p {
    color: #e9ecef; /* Light gray for contrast */
    font-size: 18px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 500;
}
.feature-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* --- Form Column (Right) --- */
.form-column {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}
.form-column form {
    width: 100%;
    max-width: 400px;
}
.form-column h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px var(--light-green-bg);
}
.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}
.form-group-checkbox label {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
}
.form-group-checkbox a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}
.form-group-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-green);
    color: #ffffff; /* White text for Pink button */
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s;
}
.submit-btn:hover {
    opacity: 0.85;
}

.login-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-light);
}
.login-link a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}
.login-link a:hover {
    text-decoration: underline;
}

.error-message {
    color: var(--error-color);
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid var(--error-color);
    padding: 10px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 13px;
    text-align: center;
    display: none; /* Hidden by default */
}

/* ADD THIS STYLE for the new image */
.branding-image {
    max-width: 100%;
    margin-top: 40px;
    border-radius: var(--border-radius);
}

/* REPLACE your previous @media (max-width: 992px) styles for the auth page with this */
@media (max-width: 992px) {
    .auth-container {
        /* Switch to a single column layout */
        grid-template-columns: 1fr;
    }

    /* HIDE the branding column completely on smaller screens */
    .branding-column {
        display: none;
    }

    .form-column {
        padding: 40px 30px;
        /* Center the form vertically now that it's the only column */
        min-height: 100vh;
        box-sizing: border-box; /* Include padding in height calculation */
    }
}
/*
========================================
    LOGIN PAGE SPECIFIC STYLES
========================================
*/

/* Different background image for the login page's branding column */
.login-branding {
    background-image: url('https://images.unsplash.com/photo-1665686306574-1ace09918530?auto=format&fit=crop');
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.forgot-password-link {
    font-size: 13px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}
.forgot-password-link:hover {
    text-decoration: underline;
}

.register-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-light);
}
.register-link a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}
.register-link a:hover {
    text-decoration: underline;
}
/*
========================================
    PASSWORD RESET PAGE STYLES
========================================
*/

/* Different background image for the password reset page */
.password-reset-branding {
    background-image: url('https://images.unsplash.com/photo-1560472355-536de3962603?auto=format&fit=crop');
}

.form-instruction {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
}

.back-to-login-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
}
.back-to-login-link a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}
.back-to-login-link a:hover {
    text-decoration: underline;
}

.success-message {
    color: var(--primary-green);
    background-color: var(--light-green-bg);
    border: 1px solid var(--primary-green);
    padding: 10px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 13px;
    text-align: center;
    display: none; /* Hidden by default */
}

/*
========================================
    NEW PASSWORD PAGE STYLES
========================================
*/

/* Different background image for the new password page */
.new-password-branding {
    background-image: url('https://images.unsplash.com/photo-1555898993-4e48a3c814b7?auto=format&fit=crop');
}

/* Success state shown after form submission */
.success-state {
    display: none; /* Hidden by default */
    text-align: center;
    max-width: 400px;
}
.success-icon {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}
.success-state h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}
.success-state p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

/*
========================================
    ADD MONEY PAGE STYLES (Current)
========================================
*/

.add-money-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.source-selection-panel,
.amount-panel {
    background-color: var(--content-bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
}

.source-selection-panel h3,
.amount-panel h3 {
    margin-top: 0;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
}

/* --- Left Panel --- */
.source-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.source-radio-input {
    display: none;
}
.source-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.source-card:hover {
    border-color: var(--primary-green);
    background-color: var(--light-green-bg);
}
.source-icon {
    font-size: 1.8rem;
    color: var(--text-light);
}
.source-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.source-name {
    font-weight: 600;
}
.source-account-num {
    font-size: 0.8rem;
    color: var(--text-light);
}
.check-indicator {
    font-size: 1.5rem;
    color: transparent;
    transition: color 0.2s ease-in-out;
}
.source-radio-input:checked + .source-card {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px var(--primary-green);
}
.source-radio-input:checked + .source-card .check-indicator {
    color: var(--primary-green);
}

.add-new-source {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    background: transparent;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.add-new-source:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* --- Right Panel --- */
.transfer-flow-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}
.flow-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.flow-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 2px;
}
.account-name {
    font-weight: 600;
}
.account-name.placeholder {
    color: var(--text-light);
    font-weight: 500;
}
.flow-arrow {
    color: var(--text-light);
}

.quick-amounts {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.quick-amount-btn {
    flex: 1;
    padding: 8px;
    /* UPDATED: Green button style */
    background-color: transparent;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.quick-amount-btn:hover {
    background-color: var(--primary-green);
    color: #ffffff;
}

@media (max-width: 992px) {
    .add-money-container {
        grid-template-columns: 1fr;
    }
}
/*
========================================
    COT CODE PAGE STYLES (Current)
========================================
*/

.centered-card {
    max-width: 500px;
    margin: 40px auto; /* Provides space from header and footer */
}

.text-center {
    text-align: center;
}

.status-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* Visually hide labels that are still accessible to screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.code-input {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 15px;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
}
.code-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px var(--light-green-bg);
}

.resend-link {
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-light);
}
.resend-link a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}
.resend-link a:hover {
    text-decoration: underline;
}

/* CORRECTED: Explicitly defining the button style for this page */
.cta-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 12px 30px;
    border: none; /* Make sure there's no border */
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%; /* Make button full-width of its container */
    max-width: 300px; /* Match the input field width */
    transition: opacity 0.3s;
}
.cta-button:hover {
    opacity: 0.85;
}

/* NEW: Style for smaller footer on utility pages */
.minimal-footer {
    margin-top: 0;
    padding: 20px;
    border-top: none; /* Remove the top border for a cleaner look */
}
/*
========================================
    KYC UPLOAD PAGE STYLES
========================================
*/

.upload-area-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.upload-box {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden; /* To keep status inside */
    transition: border-color 0.3s;
}

.file-input {
    display: none; /* Hide the actual input */
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    height: 100%;
    box-sizing: border-box;
}
.upload-box:hover {
    border-color: var(--primary-green);
}
.upload-icon {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}
.upload-prompt {
    font-weight: 600;
    display: block;
}
.upload-info {
    font-size: 0.8rem;
    color: var(--text-light);
}

.upload-status {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--content-bg-color);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.status-indicator {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}
.file-name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}
.remove-file-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}
.remove-file-btn:hover {
    color: var(--error-color);
}

/* State management classes */
.upload-box.is-uploading .upload-status { display: flex; }
.upload-box.file-selected .upload-status { display: flex; }

.upload-box.is-uploading .status-indicator.fa-circle-check { display: none; }
.upload-box.file-selected .status-indicator.fa-spinner { display: none; }

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .upload-area-container {
        grid-template-columns: 1fr;
    }
}
/*
========================================
    USER PROFILE PAGE STYLES
========================================
*/

.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* --- Profile Sidebar --- */
.profile-sidebar {
    background-color: var(--content-bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
}
.profile-picture-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}
.profile-picture {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--content-bg-color);
    box-shadow: 0 0 0 2px var(--primary-green);
}
.change-picture-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: #ffffff;
    border: 2px solid var(--content-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.profile-name {
    margin: 0;
    font-size: 1.25rem;
}
.profile-email {
    color: var(--text-light);
    font-size: 0.9rem;
    word-break: break-all;
}
.profile-status {
    margin-top: 15px;
}
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-badge.verified {
    background-color: var(--light-green-bg);
    color: var(--primary-green);
}

/* --- Profile Content --- */
.profile-content {
    background-color: var(--content-bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}
.profile-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}
.profile-tab-item {
    padding: 15px 25px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}
.profile-tab-item:hover {
    color: var(--text-color);
}
.profile-tab-item.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.tab-panels {
    padding: 30px;
}
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
}
.tab-panel h4 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.tab-panel .cta-button {
    margin-top: 10px;
    max-width: 200px; /* Smaller button for this context */
}

/* Security & Notification Options */
.security-option, .notification-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}
.security-option:last-child, .notification-option:last-child {
    border-bottom: none;
}
.security-info p, .notification-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 5px 0 0 0;
}
.cta-button.secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}
.cta-button.secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

@media (max-width: 992px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
}
/*
========================================
    INFO CARD STYLES (for KYC page)
========================================
*/

/* Can reuse .promo-card or use a new class */
.info-card {
    background-color: var(--content-bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
}
.info-card h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}
.info-card p:last-child {
    margin-bottom: 0;
}
.info-card a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}
.info-card a:hover {
    text-decoration: underline;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}
.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.info-list i {
    color: var(--primary-green);
}

/* Align the sidebar to the top on pages like this one */
.promo-sidebar {
    margin-top: 0;
}
/*
========================================
    DUAL COLUMN LAYOUT (for KYC, COT, etc.)
========================================
*/

.dual-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal-width columns */
    gap: 30px;
    align-items: start; /* Align items to the top */
}

/* Override the centered-card margin for this layout */
.dual-column-layout .card {
    margin: 0;
}

/* Responsive: On smaller screens, stack the columns */
@media (max-width: 992px) {
    .dual-column-layout {
        grid-template-columns: 1fr; /* One column, items will stack */
    }
}
/*
========================================
    MULTI-STEP FORM / TIMELINE STYLES
========================================
*/

.timeline-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}
/* The connecting line */
.timeline-stepper::before {
    content: '';
    position: absolute;
    top: 18px; /* Vertically center */
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}
.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}
.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 5px;
    transition: all 0.3s;
}
.step-title {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s;
}
.timeline-step.active .step-number {
    border-color: var(--primary-green);
}
.timeline-step.active .step-title {
    color: var(--primary-green);
}
.timeline-step.completed .step-number {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
}
.timeline-step.completed .step-title {
    color: var(--text-color);
}

.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}
.form-navigation .cta-button {
    max-width: 200px;
    margin: 0;
}
.form-navigation .cta-button.secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}
.form-navigation .cta-button.secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.photo-upload-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}
.photo-preview {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}
.upload-photo-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: #ffffff;
    border: 2px solid var(--content-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
/*
========================================
    GENERIC FORM INPUT STYLING
========================================
*/

/* General styling for various input types to ensure consistency */
input[type="date"],
input[type="tel"],
input[type="password"],
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Focus styles for these inputs */
input[type="date"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px var(--light-green-bg);
}

/* Custom dropdown arrow for select elements */
select {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23A0AEC0' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Remove dropdown arrow for dark mode and replace with a lighter one if needed */
body.dark-mode select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFFFFF' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
/*
========================================
    OTP VERIFICATION PAGE STYLES
========================================
*/

.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.otp-digit {
    width: 45px;
    height: 55px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
    caret-color: var(--primary-green); /* Makes the typing cursor green */
}

.otp-digit:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px var(--light-green-bg);
}

@media (max-width: 480px) {
    .otp-input-container {
        gap: 5px;
    }
    .otp-digit {
        width: 35px;
        height: 45px;
        font-size: 1.2rem;
    }
}
/* Error alert box */
.alert-error {
    background-color: rgba(244, 67, 54, 0.1); /* soft red background */
    border: 1px solid var(--error-color);
    color: var(--error-color);
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-weight: 600;
}

/* Optional stronger text emphasis */
.alert-error strong {
    color: var(--error-color);
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.1); /* soft green background */
    border: 1px solid var(--success-color, #4CAF50);
    color: var(--success-color, #4CAF50);
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-weight: 600;
}


/*
========================================
    KYC PENDING PAGE STYLES
========================================
*/

.progress-bar-container {
    width: 100%;
    height: 30px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    width: 80%; /* Represents "in progress" */
    height: 100%;
    background-color: var(--primary-green);
    border-radius: var(--border-radius);
    /* Animated background for a "processing" effect */
    background-image: linear-gradient(45deg, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    animation: progress-bar-stripes 1s linear infinite;
}

.progress-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
}

.reassurance-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

@keyframes progress-bar-stripes {
  from { background-position: 40px 0; }
  to { background-position: 0 0; }
}
/*
========================================
    SEND MONEY PAGE STYLES
========================================
*/

/* Styles for the amount input with the dollar sign */
.amount-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0 15px;
    background-color: var(--bg-color);
}
.amount-input-wrapper:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px var(--light-green-bg);
}
.dollar-sign {
    font-size: 1.5rem; /* Adjusted size */
    font-weight: 500;
    color: var(--text-light);
}
#transfer-amount-send {
    flex-grow: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.5rem; /* Adjusted size */
    font-weight: 500;
    padding: 10px 5px 10px 10px;
    width: 100%;
}

/* Textarea styling */
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: vertical;
    box-sizing: border-box; /* Ensures padding is included in width */
}
textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px var(--light-green-bg);
}

/* Make sure the main CTA button is full width on this form */
#send-money-form .cta-button {
    width: 100%;
    max-width: none;
}
/*
========================================
    PRELOADER STYLES
========================================
*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    border: 8px solid var(--border-color);
    border-top: 8px solid var(--primary-green);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

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

/* Hiding and Showing Content */
#page-content.hidden {
    opacity: 0;
    visibility: hidden;
}
#page-content {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out;
}

#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}
/*
========================================
    RECEIPT PAGE STYLES (Current)
========================================
*/

.receipt-container {
    padding: 20px;
}

.receipt-header {
    text-align: center;
    margin-bottom: 30px;
}
/* Reusing .success-icon from other pages */
.receipt-header .success-icon {
    font-size: 3rem;
}
.receipt-header h3 {
    font-size: 1.75rem;
    margin: 15px 0 5px 0;
}
.receipt-header p {
    color: var(--text-light);
    margin: 0;
}

.receipt-amount {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
.amount-label {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
}
.amount-value {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.receipt-details {
    margin-bottom: 30px;
}
.receipt-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
.receipt-item:last-child {
    border-bottom: none;
}
.receipt-item span:first-child {
    color: var(--text-light);
}
.receipt-item strong {
    color: var(--text-color);
    font-weight: 600;
    text-align: right;
}
/* Reusing .status-badge from profile page */
.status-badge.completed {
    background-color: var(--light-green-bg);
    color: var(--credit-color);
}

.receipt-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}
.receipt-actions .cta-button {
    width: auto;
    max-width: 220px;
}
.receipt-actions .cta-button i {
    margin-right: 8px;
}
/*
========================================
    RECEIVE MONEY (CRYPTO) PAGE STYLES
========================================
*/

/* Tab Navigation */
.crypto-tabs {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.crypto-tab-item {
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}
.crypto-tab-item:hover {
    color: var(--text-color);
}
.crypto-tab-item.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

/* Tab Panels */
.tab-panel.crypto-panel {
    display: none;
    animation: fadeIn 0.5s;
}
.tab-panel.crypto-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.qr-code-wrapper {
    text-align: center;
    margin-bottom: 25px;
}
.qr-code-wrapper img {
    border-radius: var(--border-radius);
    border: 5px solid var(--content-bg-color);
    box-shadow: 0 0 0 1px var(--border-color);
}

.wallet-address-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding-left: 15px;
}
.wallet-address-wrapper input[type="text"] {
    flex-grow: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9rem;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    padding: 12px 0;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 12px;
}
.copy-btn:hover {
    color: var(--primary-green);
}
.copy-btn .fa-circle-check {
    color: var(--primary-green);
}
/*
========================================
    FAQ PAGE STYLES
========================================
*/

.faq-container {
    padding: 10px 20px;
}

.faq-category {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.faq-container > .faq-category:first-of-type {
    margin-top: 10px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}
.faq-question i {
    color: var(--text-light);
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease;
}
.faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}
/*
========================================
    ACCOUNT STATUS PAGE STYLES (Deleted, Inactive, etc.)
========================================
*/

/* Making the logo on status pages more prominent */
.status-page-container .logo {
    margin-bottom: 40px;
    font-size: 2rem;
}

.status-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.status-icon-wrapper i {
    font-size: 2.5rem;
}

/* Color coding for status icons */
.status-icon-wrapper.danger {
    background-color: rgba(229, 62, 62, 0.1);
    color: #e53e3e;
}
body.dark-mode .status-icon-wrapper.danger {
    color: #fc8181;
}

.status-icon-wrapper.warning {
    background-color: rgba(237, 137, 54, 0.1);
    color: #ed8936;
}
body.dark-mode .status-icon-wrapper.warning {
    color: #f6ad55;
}

.status-icon-wrapper.success {
    background-color: var(--light-green-bg);
    color: var(--credit-color);
}