:root {
    --primary: #0d7ff2;
    --gold: #d4af37;
    --gold-light: #f1d592;
    --bg-dark: #0a0c10;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent-teal: #14b8a6;
    --accent-violet: #8b5cf6;
    --success: #10b981;
    --error: #ef4444;
    --font-family: 'Inter', 'Outfit', sans-serif;
    --roundness: 12px;
    --gold-gradient: linear-gradient(135deg, #f1d592 0%, #d4af37 50%, #b8860b 100%);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container:hover {
    transform: scale(1.08) translateY(-2px);
    filter: brightness(1.1) drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    animation: premium-float 6s ease-in-out infinite;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-hero-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    width: 100%;
}

.logo-hero-img {
    width: clamp(150px, 20vw, 220px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
    animation: premium-float 8s ease-in-out infinite;
    transition: all 0.5s ease;
}

.logo-hero-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6)) brightness(1.15);
}

@keyframes premium-float {

    0%,
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.2));
    }

    50% {
        transform: translateY(-8px);
        filter: drop-shadow(0 15px 30px rgba(212, 175, 55, 0.5));
    }
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    max-width: 800px;
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: 1.15rem;
    }
}

html {
    zoom: 0.5;
    
}

@media (max-width: 1024px) {
    html {
        zoom: 1;
        
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

.background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 0% 0%, rgba(13, 127, 242, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(13, 127, 242, 0.1) 0%, transparent 50%);
    background-color: var(--bg-dark);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(45deg, var(--primary), var(--accent-violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.btn-signin {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-signin:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(13, 127, 242, 0.4);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.send-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

#user-accounts-section {
    flex: 1;
    min-width: 320px;
    position: sticky;
    top: 100px;
}

.send-widget {
    flex: 1.2;
    max-width: 500px;
    padding: 2rem;
}

.panel-dark {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--roundness);
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.panel-dark summary {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.panel-dark summary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.account-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    overflow: hidden;
}

.account-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.1;
    z-index: -1;
}

.account-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bank-logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.bank-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: white;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.copy-all-btn {
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: var(--accent-teal);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.copy-all-btn:hover {
    background: var(--accent-teal);
    color: white;
}

.copy-all-btn:active {
    transform: scale(0.95);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.avatar {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    text-shadow: none;
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    max-width: 800px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
}

@media (max-width: 1024px) {
    .send-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    #user-accounts-section {
        width: 100%;
        max-width: 500px;
        position: static;
        margin-bottom: 2rem;
    }

    .send-widget {
        width: 100%;
        max-width: 500px;
    }
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.field {
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.field:hover {
    background: rgba(255, 255, 255, 0.015);
}

.field:last-child {
    border-bottom: none;
}

.field span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.3rem;
}

.field input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    width: 220px;
    outline: none;
    transition: all 0.3s ease;
}

.field input:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(13, 127, 242, 0.2);
}

.editable-rate-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    width: 130px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.editable-rate-input:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(13, 127, 242, 0.2);
}

.custom-select {
    width: 100%;
    margin-top: 0.5rem;
    height: 45px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0 1rem;
    outline: none;
    appearance: none;
}

.custom-select option {
    background: var(--bg-dark);
    color: white;
}

.premium-input,
.premium-select {
    width: 100%;
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.9rem 1.2rem;
    border-radius: 14px;
    color: white;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.premium-input:focus,
.premium-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 127, 242, 0.2);
}

.premium-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

.premium-select option {
    background: var(--bg-dark);
    color: white;
}

.custom-input {
    width: 100%;
    margin-top: 0.5rem;
}

.currency-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    cursor: pointer;
}

.exchange-rate {
    font-size: 0.9rem;
    color: var(--accent-teal);
    background: rgba(20, 184, 166, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

.btn-primary {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 16px;
    background: linear-gradient(45deg, var(--primary), var(--accent-violet));
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 127, 242, 0.4);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    filter: grayscale(0.5);
}

.history-section {
    display: none;
    
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.search-bar {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    width: 300px;
    outline: none;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transaction-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    transition: transform 0.2s ease;
}

.transaction-card:hover {
    transform: scale(1.01);
    background: rgba(255, 255, 255, 0.08);
}

.recipient-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-teal), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-completed {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.status-rejected {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

.status-pending {
    background: rgba(13, 127, 242, 0.15);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(13, 127, 242, 0.2);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }

    .search-bar {
        width: 100%;
    }

    .transaction-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .amount-info {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-hidden {
        display: none !important;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    text-align: center;
    animation: modalEnter 0.3s ease-out;
}

@keyframes modalEnter {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-google {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: white;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.login-tagline-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.country-selector-premium {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid var(--gold) !important;
    border-radius: 12px !important;
    color: white !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-selector-premium:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.phone-input-premium {
    border-left: none !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.country-selector-wrapper {
    display: flex;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.country-selector-wrapper:focus-within {
    border-color: var(--gold);
}

.country-selector-premium {
    border: none !important;
    border-right: 1px solid var(--glass-border) !important;
    border-radius: 0 !important;
    padding: 0 8px !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.country-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.spreadsheet-ui {
    border-collapse: collapse;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.85rem;
    table-layout: fixed;
}

.spreadsheet-ui th {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 4px;
    font-weight: 700;
    color: var(--accent-teal);
    text-align: center;
    width: 40px;
}

.spreadsheet-ui th.col-header {
    width: 100px;
}

.spreadsheet-ui td {
    border: 1px solid var(--glass-border);
    padding: 0;
}

.spreadsheet-cell {
    width: 100%;
    height: 30px;
    background: transparent;
    border: none;
    color: white;
    padding: 0 8px;
    outline: none;
    transition: background 0.1s;
    font-family: inherit;
}

.spreadsheet-cell:focus {
    background: rgba(20, 184, 166, 0.15);
    box-shadow: inset 0 0 0 1px var(--accent-teal);
}

.spreadsheet-cell.formula {
    color: var(--accent-teal);
    font-weight: 700;
}

.home-rate-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 1.2rem;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.home-rate-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.home-rate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.home-rate-card:hover::before {
    transform: translateX(100%);
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.update-pulse {
    animation: pulse-gold 2s infinite;
}

@keyframes spin {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.spin {
    animation: spin 1s linear infinite;
    display: inline-block;
}

.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 0.8rem 1rem;
    justify-content: space-around;
    align-items: flex-end; /* Align icons to bottom */
    z-index: 1000;
    padding-bottom: calc(0.8rem + env(safe-area-inset-bottom));
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.mobile-nav-item.mob-nav-center {
    position: relative;
    top: -12px;
    z-index: 1002;
    flex: 1.2;
}

.mob-nav-center-inner {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e5c06b 0%, #c49a3f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.5),
        0 0 12px rgba(212, 175, 55, 0.4);
    border: 3px solid rgba(10, 12, 16, 0.8);
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mob-nav-center-inner i,
.mob-nav-center-inner .material-icons {
    color: white !important;
    font-size: 28px !important;
    transform: none; /* Removed rotation */
}

.mobile-nav-item.mob-nav-center span {
    color: var(--gold-light) !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
}

.mobile-nav-item.mob-nav-center.active .mob-nav-center-inner {
    transform: scale(1.05);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.6);
}

/* ================== BOTTOM SHEET MORE MENU ================== */
.bottom-sheet-overlay {
    align-items: flex-end; /* Align bottom sheet to bottom */
}

.bottom-sheet-content {
    width: 100%;
    max-width: 600px;
    border-radius: 24px 24px 0 0;
    padding: 1.5rem 1.5rem 3rem 1.5rem;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-bottom: none;
    transform: translateY(100%);
    animation: slideUpSheet 0.4s cubic-bezier(0.175, 0.885, 0.32, 1) forwards;
}

@keyframes slideUpSheet {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.bottom-sheet-handle {
    width: 40px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 0 auto 1.5rem auto;
}

.more-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.more-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-main);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.more-menu-item:hover, .more-menu-item:active {
    background: rgba(255, 255, 255, 0.08);
}

.more-menu-item .more-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
}

.more-menu-item .expand-icon {
    margin-left: auto;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.about-submenu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 3.5rem;
    margin-top: -0.4rem;
    margin-bottom: 0.4rem;
}

.submenu-item {
    padding: 0.8rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: color 0.2s;
}

.submenu-item:hover, .submenu-item:active {
    color: var(--gold-light);
}

.mobile-nav-item i,
.mobile-nav-item .material-icons {
    font-size: 24px;
}

.mobile-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

.mobile-nav-item.active:not(.mob-nav-center) {
    color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }

    nav {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none !important;
    }

    main {
        padding-bottom: 5rem;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

.main-footer {
    padding: 3rem 5% 7.5rem;
    
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-legal,
.footer-hours {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-legal h4,
.footer-hours h4 {
    color: var(--accent-teal);
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hour-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateX(5px);
}

.day-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 500;
}

.day-group .material-icons {
    font-size: 1.1rem;
    color: var(--accent-teal);
    opacity: 0.8;
}

.hour-row .time {
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.hour-row.closed {
    opacity: 0.6;
    background: rgba(239, 68, 68, 0.03);
}

.hour-row.closed .material-icons {
    color: var(--error);
}

.hour-row.highlight {
    background: rgba(20, 184, 166, 0.06);
    border-color: rgba(20, 184, 166, 0.2);
}

.hour-row.highlight .material-icons {
    color: var(--accent-teal);
}

.copyright {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2rem;
}

@media (min-width: 769px) {
    .main-footer {
        padding: 4rem 5% 2rem;
    }
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.flex-1 {
    flex: 1;
}

.w-full {
    width: 100%;
}

.w-110 {
    width: 110px;
}

.w-200 {
    width: 200px;
}

.w-280 {
    width: 280px;
}

.gap-xs {
    gap: 0.3rem;
}

.gap-sm {
    gap: 0.5rem;
}

.gap-md {
    gap: 0.8rem;
}

.gap-lg {
    gap: 1rem;
}

.gap-xl {
    gap: 1.5rem;
}

.gap-2xl {
    gap: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-xs {
    margin-bottom: 0.3rem;
}

.mb-sm {
    margin-bottom: 0.5rem;
}

.mb-md {
    margin-bottom: 1rem;
}

.mb-lg {
    margin-bottom: 1.5rem;
}

.mb-xl {
    margin-bottom: 2rem;
}

.mt-sm {
    margin-top: 0.5rem;
}

.mt-md {
    margin-top: 1rem;
}

.mt-lg {
    margin-top: 1.5rem;
}

.mt-xl {
    margin-top: 2rem;
}

.p-md {
    padding: 1rem;
}

.p-lg {
    padding: 1.5rem;
}

.p-xl {
    padding: 2rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 800;
}

.uppercase {
    text-transform: uppercase;
}

.panel-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.panel-dark {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem;
}

.search-bar-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.date-input {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.85rem;
    color: white;
    outline: none;
    width: auto;
    font-family: inherit;
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.2s;
}

.date-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.col-span-2 {
    grid-column: span 2;
}

.field-label {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-teal);
    font-weight: 700;
    text-transform: uppercase;
}

.currency-info-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 12px;
}

.currency-info-label {
    font-size: 0.7rem;
    color: var(--accent-teal);
    font-weight: 700;
    text-transform: uppercase;
}

.currency-info-value {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0.3rem 0;
    flex-wrap: wrap;
}

.currency-info-value input[type="number"] {
    width: 85px;
    min-width: 85px;
    max-width: 110px;
    text-align: center;
}

.bank-preview-box {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bank-preview-img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: contain;
}

.text-teal {
    color: var(--accent-teal);
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--text-muted);
}

.text-white {
    color: white;
}

.text-error {
    color: var(--error);
}

.text-success {
    color: var(--success);
}

.btn-admin-refresh {
    width: auto;
    background: linear-gradient(45deg, var(--gold), #b8860b);
    color: black;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-weight: 800;
    text-transform: uppercase;
}

.text-gradient-gold {
    background: linear-gradient(45deg, #fff, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-logout {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.profile-container {
    max-width: 500px;
    margin: 0 auto;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    margin-bottom: 1rem;
    display: none;
}

.profile-initials {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.admin-safe-mode-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
}

.p-1px {
    padding: 1px;
}

.my-xl {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.admin-history-toggle {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
}

.admin-history-wrapper {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.min-w-280 {
    min-width: 280px;
}

.min-w-200 {
    min-width: 200px;
}

.admin-search-input {
    flex: 2;
    font-family: monospace;
    font-size: 0.8rem;
}

.admin-btn-refresh-small {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    border-color: var(--accent-teal);
    color: var(--accent-teal);
}

.btn-admin-delete {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.p-sm {
    padding: 0.5rem;
}

.btn-error {
    border-color: var(--error);
    color: var(--error);
}

.grid-monitors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

@media (max-width: 768px) {
    .user-name-display {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.3rem !important;
    }

    .home-rate-card {
        padding: 0.7rem 0.8rem;
        border-radius: 12px;
    }

    .home-rate-card>div:nth-child(1) div {
        font-size: 0.8rem !important;
    }

    .home-rate-card>div:nth-child(2) {
        font-size: 1rem !important;
    }

    .home-rate-card>div:nth-child(3) span {
        font-size: 0.6rem !important;
    }

    #home-rates-grid {
        gap: 0.5rem;
    }

    main {
        padding: 1rem 4% 5rem;
    }

    .send-widget {
        padding: 1rem;
    }

    .field {
        padding: 0.8rem 1rem;
    }

    .glass {
        padding: 1rem;
    }

    .field input {
        font-size: 1.2rem;
    }
}

body.theme-modern {
    --gold: #0070f3;
    --gold-light: #3291ff;
    --gold-dark: #0051a8;
    --bg-dark: #0a0a0a;
    --surface-dark: #121212;
    --surface-light: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #888888;
    --border-color: rgba(255, 255, 255, 0.1);
}

body.theme-modern .glass {
    border-radius: 12px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-modern .btn-primary {
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 4px 15px rgba(0, 112, 243, 0.3);
    color: white;
    
}

body.theme-light {
    --bg-dark: #f5f5f7;
    --surface-dark: #ffffff;
    --surface-light: #f0f0f0;
    --text-main: #1d1d1f;
    --text-muted: #86868b;
    --gold: #2c2c2c;
    --gold-light: #555555;
    --gold-dark: #000000;
    --border-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

body.theme-light .background-canvas {
    opacity: 0.1;
    
    filter: invert(1);
}

body.theme-light .text-white {
    color: var(--text-main) !important;
}

body.theme-light .text-gold {
    color: var(--gold) !important;
}

body.theme-light input,
body.theme-light select,
body.theme-light textarea {
    background: #ffffff;
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.theme-light .btn-primary {
    border-radius: 12px;
    background: var(--gold);
    color: white;
}

@keyframes spin-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.spin {
    animation: spin-rotate 0.8s linear infinite;
    display: inline-block;
}

.connection-status-pill {
    margin-left: 10px;
    font-size: 10px;
    color: var(--text-muted);
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ================================================================
   PASO 4 — Clases extraídas de estilos inline (index.html)
   ================================================================ */

/* ── NAV ── */
.nav-status-icon {
    font-size: 10px;
}

.nav-status-text {
    letter-spacing: 0.5px;
}

.nav-link-support {
    color: #25D366;
}

.nav-link-support .material-icons,
.nav-link-theme .material-icons {
    font-size: 18px;
}

.nav-link-theme {
    color: var(--text-main);
    cursor: pointer;
}

/* ── HOME ── */
.logo-hero-mb {
    margin-bottom: 0.8rem;
}

.hero-layout {
    align-items: flex-start;
    width: 100%;
}

.hero-text-col {
    flex: 1;
    min-width: 300px;
}

.btn-hero-send {
    padding: 1rem 2rem;
}

.rates-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rates-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.rates-update-time {
    font-size: 0.75rem;
    color: var(--gold);
    margin-top: 0.1rem;
    opacity: 0.9;
}

.widget-title {
    margin-bottom: 1.5rem;
}

.min-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ── CURRENCY INFO PANEL (BCV / Monitor) ── */
.currency-panel {
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.currency-panel-alt {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.currency-symbol-teal {
    font-size: 1.1rem;
}

.currency-symbol-accent {
    font-size: 1.1rem;
    color: var(--accent-teal);
}

.currency-symbol-gold {
    font-size: 1.1rem;
    color: var(--accent);
}

.currency-formula {
    font-size: 0.6rem;
    margin-top: 0.2rem;
}

.currency-formula-mono {
    font-size: 0.65rem;
    margin-top: 0.3rem;
    font-family: monospace;
}

.currency-label-accent {
    color: var(--accent);
}

.rate-small-text {
    font-size: 0.65rem;
}

.rate-tag-bcv {
    font-size: 0.6rem;
}

.rate-tag-monitor {
    font-size: 0.6rem;
}

/* ── BCV / Monitor containers ── */
.bcv-container-panel {
    padding: 0.5rem 1rem;
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.monitor-container-panel {
    padding: 0.5rem 1rem;
    border-color: rgba(94, 234, 212, 0.3);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.panel-logo {
    height: 25px;
    object-fit: contain;
}

.panel-logo-round {
    height: 25px;
    object-fit: contain;
    border-radius: 50%;
}

.panel-text-left {
    text-align: left;
}

.panel-label-sm {
    font-size: 0.6rem;
    letter-spacing: 1px;
}

.panel-rate-display {
    font-size: 0.9rem;
}

/* ── SEND SECTION ── */
.summary-label-sm {
    font-size: 0.9rem;
}

.summary-expand-icon {
    font-size: 1.2rem;
}

/* ── BENEFICIARIOS ── */
.beneficiary-panel {
    background: rgba(204, 163, 83, 0.05);
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(204, 163, 83, 0.2);
    cursor: pointer;
}

.beneficiary-summary {
    display: flex;
    align-items: center;
    gap: 5px;
    outline: none;
    list-style: none;
}

.beneficiary-summary-icon {
    font-size: 18px;
}

.beneficiary-expand-icon {
    margin-left: auto;
    font-size: 18px;
}

.beneficiary-select-wrapper {
    margin-top: 1rem;
}

/* ── CAMPOS VES / TIPO DE ENVÍO ── */
.ves-type-selector {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.ves-type-btn-active {
    flex: 1;
    padding: 0.7rem;
    border-radius: 12px;
    border: 2px solid var(--gold);
    background: rgba(204, 163, 83, 0.15);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ves-type-btn-inactive {
    flex: 1;
    padding: 0.7rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ves-type-icon {
    font-size: 18px;
}

/* ── CÉDULA VES ── */
.ves-id-row {
    display: flex;
    gap: 0.4rem;
}

.ves-id-prefix-select {
    flex: 0 0 65px;
    font-size: 0.9rem;
    padding: 0.6rem 0.3rem;
    text-align: center;
    font-weight: 700;
    border-color: var(--gold);
}

.ves-id-input {
    flex: 1;
    margin-top: 0;
}

/* ── NOTA / COMPROBANTE ── */
.tx-note-field {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.proof-file-input {
    width: 100%;
}

.proof-preview-wrap {
    display: none;
    margin-top: 1rem;
    position: relative;
}

.proof-preview-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

/* ── GUARDAR BENEFICIARIO ── */
.save-beneficiary-panel {
    margin-bottom: 1.5rem;
    background: rgba(204, 163, 83, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(204, 163, 83, 0.2);
}

.save-beneficiary-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    color: white;
    font-size: 0.9rem;
}

.save-beneficiary-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold);
}

.save-beneficiary-text {
    flex: 1;
}

/* ── ADMIN: CUENTAS ── */
.admin-section-details {
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.admin-section-summary {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-section-expand {
    font-size: 1.2rem;
}

.admin-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.admin-input-full {
    width: 100%;
    margin-top: 0.3rem;
}

.admin-logo-img {
    width: 20px;
    height: 20px;
}

/* ── ADMIN: TASAS ── */
.admin-rates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.admin-rates-title {
    margin: 0;
    font-size: 1rem;
    color: var(--gold);
}

.btn-auto-calc {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-auto-calc .material-icons {
    font-size: 16px;
}

.rates-tip-box {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--accent-teal);
    border-radius: 4px;
}

.rates-tip-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* ── ADMIN: PUSH / PROMO ── */
.admin-panel-title {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--gold);
}

.admin-panel-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.admin-label-sm {
    font-size: 0.85rem;
}

.promo-textarea {
    height: auto;
    border-radius: 12px;
}

.btn-send-promo {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    padding: 0.8rem;
}

.btn-send-promo .material-icons {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.promo-result-box {
    display: none;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
}

.promo-image-upload {
    padding: 0.8rem;
}

.promo-preview-wrap {
    display: none;
    text-align: center;
}

.promo-preview-img {
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

/* ── ADMIN: BINANCE ── */
.binance-flag-img {
    height: 16px;
}

.binance-monitor-label {
    font-size: 0.9rem;
}

.binance-price {
    font-size: 1.5rem;
}

.binance-detail-block {
    line-height: 1.2;
}

.binance-detail-text {
    font-size: 0.7rem;
    display: block;
}

.binance-time-text {
    font-size: 0.65rem;
}

.binance-ecs-price {
    font-size: 1.5rem;
    color: #60a5fa;
}

/* ── FOOTER ── */
.footer-note {
    margin-top: 1rem;
    font-style: italic;
    font-size: 0.7rem;
}

.footer-legal-p {
    margin-top: 0.5rem;
}

/* ── MODAL: PROMO ── */
.promo-modal-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.promo-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.promo-modal-link {
    display: block;
    pointer-events: none;
}

.promo-modal-img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* ── MODAL: REJECT ── */
.reject-textarea {
    height: 100px;
    margin: 1.5rem 0 1rem;
    border-radius: 12px;
}

.reject-proof-label {
    font-size: 0.8rem;
}

.reject-proof-icon {
    font-size: 14px;
    vertical-align: middle;
}

.reject-file-input {
    padding: 0.8rem;
}

.reject-proof-preview {
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.btn-reject-confirm {
    background: var(--error);
}

.btn-cancel-muted {
    border-color: var(--text-muted);
    color: var(--text-muted);
}

/* ── MODAL: CONFIRM ── */
.confirm-form {
    text-align: left;
    margin: 1.5rem 0;
}

.confirm-msg-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.confirm-textarea {
    height: 80px;
    border-radius: 12px;
}

.confirm-file-input {
    padding: 0.8rem;
}

.confirm-proof-preview {
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

/* ── MODAL: LOGIN ── */
.login-logo {
    width: 100px;
    height: 100px;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.2rem 0;
}

.login-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.login-divider-text {
    color: var(--text-muted);
    font-size: 0.8rem;
    white-space: nowrap;
}

.phone-login-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.phone-country-select {
    flex: 0 0 140px;
    font-size: 0.85rem;
    padding: 0.7rem 0.5rem;
    border-color: var(--gold);
    background-image: none;
}

.phone-input-login {
    flex: 1;
    margin-top: 0;
    border-color: var(--gold);
}

.btn-sms {
    padding: 0.8rem;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--gold), #b8860b);
}

.btn-sms .material-icons {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.otp-section {
    display: none;
    margin-top: 1rem;
}

.otp-hint {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.otp-input {
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 8px;
    font-weight: 800;
    border-color: var(--gold);
    margin-bottom: 0.8rem;
}

.btn-verify {
    padding: 0.8rem;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--gold), #b8860b);
}

.btn-cancel-login {
    border-color: var(--text-muted);
    color: var(--text-muted);
}

/* ── MODAL: COUNTRY ── */
.country-modal-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ── MODAL: USER-HISTORY ── */
.user-history-title {
    color: var(--gold);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.user-history-email-span {
    color: white;
    font-size: 1.1rem;
    font-family: monospace;
}

.user-history-list-wrap {
    margin-top: 1rem;
}

.user-history-close-row {
    margin-top: 1.5rem;
    text-align: right;
}

/* ── MODAL: LOGOUT ── */
.logout-modal-overlay {
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.logout-modal-inner {
    max-width: 400px;
}

.logout-icon-circle {
    background: rgba(16, 185, 129, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.logout-icon {
    font-size: 32px;
}

/* ── MOBILE NAV ADMIN ── */
.mob-admin-item {
    display: none;
    color: var(--gold);
}

.mob-admin-label {
    font-weight: 800;
}

/* ── MOBILE NAV SOPORTE ── */
.mob-support-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── PROFILE ── */
.profile-email-display {
    font-size: 0.9rem;
}

/* ── ADMIN SUMMARY CURSOR ── */
.admin-summaries-cursor {
    font-size: 1.1rem;
    cursor: pointer;
}

/* ── VES TYPE BUTTONS ── */
.ves-type-btn-active,
.ves-type-btn-inactive {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    flex: 1;
    transition: all 0.25s ease;
}

.ves-type-btn-active {
    background: rgba(13, 127, 242, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

.ves-type-btn-inactive {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.ves-type-btn-inactive:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-main);
}

.ves-type-icon {
    font-size: 1.4rem;
}

/* ── ADMIN DETAILS PANEL (sin clase) ── */
.admin-details-panel {
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.admin-details-summary {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-details-icon {
    font-size: 1.2rem;
}

/* ── ADMIN ACCOUNTS GRID ── */
.admin-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.admin-accounts-input {
    width: 100%;
    margin-top: 0.3rem;
}

/* ── ADMIN RATES ── */
.admin-rates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.admin-rates-title {
    margin: 0;
    font-size: 1rem;
    color: var(--gold);
}

.admin-rates-calc-btn {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    gap: 4px;
}

.admin-rates-calc-icon {
    font-size: 16px;
}

.admin-rates-tip {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--accent-teal);
    border-radius: 4px;
}

.admin-rates-tip p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* ── ADMIN PUSH / PROMO: contenedor flex-col ── */
.admin-flex-col-gap {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.admin-section-title {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--gold);
}

.admin-label-sm {
    font-size: 0.85rem;
}

.admin-promo-textarea {
    height: auto;
    border-radius: 12px;
}

.admin-promo-btn {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    padding: 0.8rem;
}

.admin-promo-btn-icon {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.admin-promo-result {
    display: none;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
}

/* ── ADMIN PROMO (modal config) ── */
.admin-promo-image-input {
    padding: 0.8rem;
}

.admin-promo-preview {
    display: none;
    text-align: center;
}

.admin-promo-preview-img {
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.admin-promo-actions {
    margin-top: 0.5rem;
}

/* ── ADMIN BINANCE ── */
.binance-header {
    margin-bottom: 1rem;
}

.binance-currency-label {
    font-size: 0.9rem;
}

.binance-price {
    font-size: 1.5rem;
}

.binance-meta {
    line-height: 1.2;
}

.binance-meta-text {
    font-size: 0.7rem;
    display: block;
}

.binance-time {
    font-size: 0.65rem;
}

.binance-flag {
    height: 16px;
}

.binance-price-ecs {
    color: #60a5fa;
}

/* ── ADMIN BINANCE HEADER BUTTON ── */
.binance-refresh-btn {
    font-size: 0.8rem;
}

/* ── MODAL: REJECT ── */
.reject-textarea {
    height: 100px;
    margin: 1.5rem 0 1rem 0;
    border-radius: 12px;
}

.reject-proof-label {
    font-size: 0.8rem;
}

.reject-proof-label-icon {
    font-size: 14px;
    vertical-align: middle;
}

.reject-proof-input {
    padding: 0.8rem;
}

.reject-proof-preview {
    display: none;
}

.reject-proof-img {
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.btn-reject-confirm {
    background: var(--error);
}

.btn-cancel-muted {
    border-color: var(--text-muted);
    color: var(--text-muted);
}

/* ── MODAL: CONFIRM ── */
.confirm-form-wrap {
    text-align: left;
    margin: 1.5rem 0;
}

.confirm-message-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.confirm-message-textarea {
    height: 80px;
    border-radius: 12px;
}

.confirm-proof-input {
    padding: 0.8rem;
}

.confirm-proof-preview {
    display: none;
}

.confirm-proof-img {
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

/* ── MODAL: LOGIN (divisor, phone, otp) ── */
.login-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.2rem 0;
}

.login-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.login-divider-text {
    color: var(--text-muted);
    font-size: 0.8rem;
    white-space: nowrap;
}

.login-phone-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.login-phone-select {
    flex: 0 0 140px;
    font-size: 0.85rem;
    padding: 0.7rem 0.5rem;
    border-color: var(--gold);
    background-image: none;
}

.login-phone-input {
    flex: 1;
    margin-top: 0;
    border-color: var(--gold);
}

.login-sms-btn {
    padding: 0.8rem;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--gold), #b8860b);
}

.login-sms-icon {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.login-otp-section {
    display: none;
    margin-top: 1rem;
}

.login-otp-hint {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.login-otp-input {
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 8px;
    font-weight: 800;
    border-color: var(--gold);
    margin-bottom: 0.8rem;
}

.login-verify-btn {
    padding: 0.8rem;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--gold), #b8860b);
}

/* ── MODAL: PROMO ── */
.promo-modal-overlay {
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
}

.promo-modal-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.promo-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.promo-modal-link {
    display: block;
    pointer-events: none;
}

.promo-modal-img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* ── MODAL USER-HISTORY (max-width) ── */
.user-history-modal-content {
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
}

/* ── FOOTER note ── */
.footer-note {
    margin-top: 1rem;
    font-style: italic;
    font-size: 0.7rem;
}

.footer-legal-gap {
    margin-top: 0.5rem;
}

/* ── NAV ADMIN (hidden by default) ── */
.nav-admin-hidden {
    display: none;
}

/* ── NAV LOGOUT ICON ── */
.nav-logout-icon {
    font-size: 16px;
}

/* ── SEND-VIEW: saved beneficiary actions ── */
.beneficiary-actions-wrap {
    margin-top: 0.5rem;
}

/* ── SEND-VIEW: saved beneficiary spacing ── */
.saved-beneficiaries-wrap {
    display: block;
    margin-bottom: 0.5rem;
}

/* ── SEARCH BAR WRAPPER DATE ── */
.search-bar-wrapper-date {
    padding: 5px 10px;
    border-radius: 10px;
}

/* ── ADMIN BULK ACTIONS ── */
.admin-bulk-actions-row {
    display: none;
    justify-content: flex-end;
}

/* ── ADMIN ICON SIZE ── */
.icon-18 { font-size: 18px; }
.icon-16 { font-size: 16px; }

/* ── ADMIN HISTORY SPACER ── */
.admin-separator-text {
    margin: 0 4px;
}

/* ── MODAL: LOGIN extras ── */
.login-modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

.login-logo-img {
    width: 100px;
    height: 100px;
}

/* ── MODAL: COUNTRY max-height ── */
.country-modal-content {
    max-height: 80vh;
    overflow-y: auto;
}

/* ── Toast Notification Animations ── */
@keyframes slideInNotification {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutNotification {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

/* ── Toast Notification Component ── */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 1.2rem;
    width: 320px;
    color: var(--text-main);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    animation: slideInNotification 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.toast-icon {
    background: rgba(204, 163, 83, 0.1);
    border-radius: 12px;
    padding: 0.6rem;
    display: flex;
}

.toast-title {
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 2px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.toast-body {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.5;
    font-weight: 500;
}

