/* ============================================================
   NinzaSMS V2 - Dashboard Theme
   All Post-Login Pages
   ============================================================ */

/* ----- RESET & BASE ----- */
:root {
    --primary: #0066ff;
    --primary-dark: #004fcc;
    --primary-light: #e8eeff;
    --sidebar-bg: #0a1a2e;
    --sidebar-width: 260px;
    --header-height: 64px;
    --bg-main: #f4f7fc;
    --text-primary: #0a2540;
    --text-secondary: #4a5a6a;
    --border-color: #e2e8f0;
    --card-shadow: 0 2px 12px rgba(0,0,0,0.06);
    --radius: 16px;
    --transition: all 0.3s ease;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
}

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #c1c7cd;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a0a7ae;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--sidebar-bg);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: var(--transition);
    overflow-y: auto;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 20px;
}

.sidebar-brand .logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}
.sidebar-brand .logo span { 
    color: var(--primary); 
}
.sidebar-brand .badge {
    font-size: 0.6rem;
    background: var(--primary);
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 600;
}

/* ----- Sidebar Balance Box ----- */
.sidebar-balance-box {
    background: linear-gradient(135deg, #0d2b4a 0%, #1a3a5c 100%);
    border-radius: 14px;
    padding: 16px 18px;
    margin: 8px 12px 16px 12px;
    border: 1px solid rgba(255,255,255,0.06);
}

.sidebar-balance-box .balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.sidebar-balance-box .balance-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sidebar-balance-box .balance-value {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.sidebar-balance-box .balance-value .currency {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.sidebar-balance-box .divider {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 8px 0;
}

.sidebar-balance-box .otp-available {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 10px;
}

.sidebar-balance-box .otp-available i {
    color: var(--success);
    font-size: 0.9rem;
}

.sidebar-balance-box .otp-available .count {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--success);
}

.sidebar-balance-box .otp-available .label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

/* ----- Sidebar Navigation ----- */
.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-nav .nav-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.3);
    padding: 12px 12px 6px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-nav a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.sidebar-nav a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.sidebar-nav a.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,102,255,0.3);
}

.sidebar-nav a .badge-count {
    margin-left: auto;
    background: var(--danger);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 12px;
}

/* ----- Sidebar Footer ----- */
.sidebar-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
    margin-top: auto;
}

.sidebar-footer .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
}

.sidebar-footer .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.sidebar-footer .user-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.sidebar-footer .user-email {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================================
   HEADER
   ============================================================ */
.top-header {
    height: var(--header-height);
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.top-header .page-title h1 {
    font-size: 1.2rem;
    font-weight: 700;
}

.top-header .page-title small {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.top-header .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ----- Live Clock ----- */
.live-clock {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 14px;
    background: #f1f4f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 8px;
}

.live-clock i {
    font-size: 0.9rem;
    color: var(--primary);
}

/* ----- Header Actions ----- */
.top-header .header-actions .notification-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.top-header .header-actions .notification-btn .dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
}

.top-header .header-actions .logout-btn {
    padding: 8px 18px;
    border: none;
    border-radius: 8px;
    background: #fee2e2;
    color: #991b1b;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.top-header .header-actions .logout-btn:hover {
    background: #fecaca;
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content {
    padding: 28px 32px;
    flex: 1;
}

/* ============================================================
   STATS CARDS
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 4px;
}

.stat-card .stat-icon {
    float: right;
    font-size: 2rem;
    color: var(--primary-light);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 24px;
}

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

.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.card-body {
    padding: 24px;
}

.card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    background: #f8faff;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.table thead {
    background: #f8faff;
}

.table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.table tr:hover td {
    background: #fafcff;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.form-group .form-control {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: #fff;
}

.form-group .form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,102,255,0.12);
}

.form-group .form-control:disabled {
    background: #f3f4f6;
    cursor: not-allowed;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(0,102,255,0.25);
}

.btn-success {
    background: var(--success);
    color: #fff;
}

.btn-success:hover {
    background: #059669;
}

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

.btn-danger:hover {
    background: #dc2626;
}

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

.btn-warning:hover {
    background: #d97706;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

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

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid transparent;
    animation: slideDown 0.3s ease;
}

.alert i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.alert-success {
    background: #dcfce7;
    border-color: #86efac;
    color: #166534;
}

.alert-error {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #991b1b;
}

.alert-warning {
    background: #fef3c7;
    border-color: #fcd34d;
    color: #92400e;
}

.alert-info {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1e40af;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MODAL / POPUP
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 40, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #ffffff;
    border-radius: var(--radius);
    max-width: 520px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 36px 38px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal Scrollbar */
.modal-box::-webkit-scrollbar {
    width: 4px;
}
.modal-box::-webkit-scrollbar-track {
    background: transparent;
}
.modal-box::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

/* Modal Header */
.modal-box .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.modal-box .modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-box .modal-header h2 i {
    color: var(--primary);
    font-size: 1.4rem;
}

.modal-box .modal-header .modal-close {
    background: #f1f4f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #4a5a6a;
    cursor: pointer;
    transition: var(--transition);
}

.modal-box .modal-header .modal-close:hover {
    background: #fee2e2;
    color: #991b1b;
}

/* Modal Subtitle */
.modal-box .modal-sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: -6px;
    margin-bottom: 22px;
}

/* Modal Form Elements */
.modal-box .form-group {
    margin-bottom: 20px;
}

.modal-box .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.modal-box .form-group label i {
    color: var(--primary);
    margin-right: 6px;
    width: 18px;
}

.modal-box .input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.modal-box .input-wrapper input,
.modal-box .input-wrapper select {
    flex: 1;
    padding: 11px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    transition: var(--transition);
    color: var(--text-primary);
}

.modal-box .input-wrapper input:focus,
.modal-box .input-wrapper select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.modal-box .input-wrapper input::placeholder {
    color: #aab5c0;
}

.modal-box .input-wrapper button {
    padding: 11px 22px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    background: var(--primary);
    color: #fff;
}

.modal-box .input-wrapper button:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.modal-box .input-wrapper button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* OTP Section inside Modal */
.modal-box .otp-section {
    margin-top: 12px;
    padding: 14px 16px;
    background: #f8faff;
    border-radius: 14px;
    border-left: 4px solid var(--primary);
}

.modal-box .otp-section .flex {
    display: flex;
    gap: 10px;
    align-items: center;
}

.modal-box .otp-section .flex input {
    flex: 1;
    padding: 11px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 4px;
    font-weight: 600;
    background: #fff;
}

.modal-box .otp-section .flex input:focus {
    border-color: var(--warning);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.modal-box .otp-section .flex button {
    background: var(--warning);
    color: #fff;
    padding: 11px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-box .otp-section .flex button:hover {
    background: #d97706;
}

.modal-box .otp-section small {
    display: block;
    margin-top: 8px;
    color: #6b7280;
    font-size: 0.75rem;
}

/* Timer & Resend */
.modal-box .timer-text {
    font-size: 0.85rem;
    color: var(--warning);
    margin-top: 4px;
}

.modal-box .resend-link {
    color: var(--primary);
    cursor: pointer;
    font-weight: 500;
}

.modal-box .resend-link:hover {
    text-decoration: underline;
}

/* Password Strength */
.modal-box .password-strength {
    font-size: 0.8rem;
    margin-top: 6px;
    font-weight: 500;
    transition: var(--transition);
}

/* Primary Button inside Modal (Complete Profile) */
.modal-box .btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--success);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.modal-box .btn-primary:hover:not(:disabled) {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.modal-box .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Alerts inside Modal */
.modal-box .alert {
    margin-bottom: 20px;
}

/* Modal Steps */
.modal-box .step {
    display: none;
}

.modal-box .step.active {
    display: block;
}

/* ============================================================
   PROFILE DETAILS
   ============================================================ */
.profile-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f5;
}

.profile-detail:last-child {
    border-bottom: none;
}

.profile-detail .label {
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 140px;
}

.profile-detail .value {
    flex: 1;
    font-weight: 500;
}

.profile-detail .edit-icon {
    color: var(--primary);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0 8px;
    transition: var(--transition);
}

.profile-detail .edit-icon:hover {
    color: #0044cc;
    transform: scale(1.1);
}

.profile-detail .badge-status {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-active {
    background: #dcfce7;
    color: #166534;
}

.badge-blocked {
    background: #fee2e2;
    color: #991b1b;
}

.badge-pending {
    background: #fef3c7;
    color: #92400e;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 16px;
}

.empty-state h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

/* ============================================================
   LOADER SPINNER
   ============================================================ */
.loader-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-radius: 50%;
    border-top: 3px solid transparent;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

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

/* ============================================================
   STATUS MESSAGES
   ============================================================ */
.status-msg {
    font-size: 0.9rem;
    margin-top: 6px;
}

/* ============================================================
   SIDEBAR TOGGLE (Mobile)
   ============================================================ */
.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        background: #0a1a2e;
        overflow-y: auto;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-content {
        margin-left: 0 !important;
        width: 100%;
    }
    
    .top-header {
        padding: 0 16px;
    }
    
    .top-header .page-title h1 {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .live-clock {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .sidebar-balance-box {
        margin: 8px 8px 12px 8px;
        padding: 14px;
    }
    
    .sidebar-balance-box .balance-value {
        font-size: 0.9rem;
    }
    
    /* Modal Responsive */
    .modal-box {
        padding: 28px 20px;
        max-width: 100%;
        margin: 10px;
        border-radius: 18px;
    }
    
    .modal-box .input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .modal-box .input-wrapper button {
        width: 100%;
        justify-content: center;
    }
    
    .modal-box .otp-section .flex {
        flex-direction: column;
    }
    
    .modal-box .otp-section .flex button {
        width: 100%;
        justify-content: center;
    }
    
    .modal-box .modal-header h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .top-header .header-actions {
        gap: 10px;
    }
    
    .top-header .header-actions .logout-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .live-clock {
        display: none;
    }
}

/* ============================================================
   PROFILE SECTION (Completion Form)
   ============================================================ */
.profile-section .input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.profile-section .input-wrapper input,
.profile-section .input-wrapper select {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.profile-section .input-wrapper input:focus,
.profile-section .input-wrapper select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

.profile-section .input-wrapper button {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.profile-section .input-wrapper button:hover:not(:disabled) {
    background: var(--primary-dark);
}

.profile-section .input-wrapper button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.profile-section .btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--success);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.profile-section .btn-primary:hover:not(:disabled) {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.profile-section .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.profile-section .password-strength {
    font-size: 0.8rem;
    margin-top: 4px;
}