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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0f;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Auth Section */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 20px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

.auth-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(10px);
    animation: authFadeIn 0.6s ease-out;
}

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

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: #888;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.auth-tab.active {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
}

.auth-form {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.auth-form h2 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.input-group.hidden {
    display: none !important;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #aaa;
    font-weight: 500;
    transition: color 0.3s ease;
}

.input-group input:focus + label,
.input-group:focus-within label {
    color: #818cf8;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.input-group input::placeholder {
    color: #555;
}

.points-value {
    font-size: 20px;
    font-weight: 700;
    color: #818cf8;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.points-value:not(:empty) {
    animation: valuePulse 0.3s ease-out;
}

@keyframes valuePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #666;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hidden {
    display: none !important;
}

/* Dashboard */
.dashboard {
    min-height: 100vh;
    min-height: 100dvh;
    background: #0a0a0f;
}

.dashboard-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content h1 {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

#user-id-display {
    font-size: 14px;
    color: #aaa;
}

.btn-logout {
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-1px);
}

.btn-theme-toggle {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(180deg);
}

.btn-notification {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-notification:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-notification:not(.hidden) {
    animation: bellShake 0.5s ease-out;
}

@keyframes bellShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0a0f;
}

.btn-return-admin {
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #818cf8;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-return-admin:hover {
    background: rgba(99, 102, 241, 0.2);
}

.btn-admin-link {
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #818cf8;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-admin-link:hover {
    background: rgba(99, 102, 241, 0.2);
}

.btn-assistant-link {
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    color: #10b981;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-assistant-link:hover {
    background: rgba(16, 185, 129, 0.2);
}

/* Dashboard Main */
.dashboard-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    gap: 24px;
}

/* Coin Section */
.coin-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coin-section h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.coin-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.coin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.coin-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.coin-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(8px);
}

.coin-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.coin-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.coin-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.coin-symbol {
    font-size: 13px;
    color: #666;
}

.coin-price {
    text-align: right;
}

.price-value {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.price-change {
    font-size: 13px;
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-block;
}

.price-change.positive {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.price-change.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Withdrawal Section */
.withdrawal-section {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
}

.withdrawal-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.withdrawal-section h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.withdrawal-container {
    animation: containerFadeIn 0.6s ease-out;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.steps-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    flex: 1;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step.active .step-number {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transform: scale(1.1);
}

.step.completed .step-number {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    color: #22c55e;
    animation: completeStep 0.4s ease-out;
}

@keyframes completeStep {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.step span {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.step.active span {
    color: #818cf8;
}

.step-content {
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.radio-label {
    flex: 1;
    min-width: 120px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.radio-label:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.radio-label:active {
    transform: translateY(0);
}

.radio-label input[type="radio"] {
    accent-color: #6366f1;
    width: 18px;
    height: 18px;
}

.radio-label span {
    font-size: 15px;
    font-weight: 500;
}

.file-upload {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.file-upload:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-2px);
}

.file-upload:active {
    transform: translateY(0);
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload label {
    display: block;
    color: #888;
    font-size: 14px;
    cursor: pointer;
}

.file-preview {
    margin-top: 12px;
}

.file-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-end;
}

/* ==================== SALARY (MAAŞ) STİLLƏRİ ==================== */

.salary-section {
    grid-column: 1 / -1;
}

.salary-notification {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.06) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 28px;
    animation: salaryPulse 2s ease-in-out infinite alternate, salaryFadeIn 0.6s ease-out;
}

@keyframes salaryPulse {
    from {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.1);
    }
    to {
        box-shadow: 0 0 20px 0 rgba(34, 197, 94, 0.15);
    }
}

@keyframes salaryFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.salary-header h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.salary-header h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    border-radius: 2px;
}

.salary-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.salary-info-row {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.salary-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salary-value {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.salary-earnings {
    color: #22c55e !important;
    font-size: 22px !important;
}

.btn-salary-claim {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-salary-claim::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-salary-claim:hover::after {
    width: 300px;
    height: 300px;
}

.btn-salary-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-salary-claim:active {
    transform: translateY(0);
}

.salary-claimed {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.salary-status-pending {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.salary-status-approved {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.salary-status-rejected {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.salary-claimed a {
    color: #ef4444;
    font-weight: 700;
    text-decoration: underline;
}

/* Salary Modal */
.salary-modal {
    max-width: 480px;
}

/* ==================== WITHDRAWAL HISTORY STİLLƏRİ ==================== */

.history-section {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
}

.history-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.history-section h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.history-container {
    animation: containerFadeIn 0.6s ease-out;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.history-filters {
    margin-bottom: 20px;
}

.history-filters select {
    width: 100%;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.history-filters select:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.history-filters select option {
    background: #1a1a2e;
    color: #fff;
}

/* ==================== PAGİNASİYA STİLLƏRİ ==================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pagination-buttons {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.page-btn {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

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

.page-btn.page-active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
}

/* ==================== PROFİL STİLLƏRİ ==================== */

.profile-section {
    grid-column: 1 / -1;
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.profile-container > h2 {
    grid-column: 1 / -1;
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-container > h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.profile-card,
.password-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.profile-card:hover,
.password-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.profile-card:hover,
.password-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.profile-card h3,
.password-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.profile-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.profile-label {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.profile-value {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.profile-value-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy {
    padding: 6px 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 6px;
    color: #818cf8;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.1);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal h3 {
    font-size: 20px;
    margin-bottom: 24px;
    text-align: center;
}

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

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .auth-card {
        padding: 30px 20px;
    }

    .dashboard-header {
        padding: 12px 16px;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .user-info {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }

    #user-id-display {
        font-size: 13px;
        order: 1;
    }

    .btn-notification {
        order: 2;
        padding: 8px 10px;
        font-size: 16px;
    }

    .btn-theme-toggle {
        order: 3;
        padding: 8px 10px;
        font-size: 14px;
    }

    .btn-logout {
        order: 4;
        padding: 8px 12px;
        font-size: 12px;
    }

    .btn-return-admin {
        order: 5;
        padding: 8px 12px;
        font-size: 12px;
    }

    .dashboard-main {
        padding: 20px 16px;
    }

    .coin-item {
        padding: 14px 16px;
    }

    .coin-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .coin-name {
        font-size: 14px;
    }

    .price-value {
        font-size: 14px;
    }

    .steps-indicator {
        flex-wrap: wrap;
        gap: 10px;
    }

    .step span {
        font-size: 11px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .withdrawal-container {
        padding: 20px 16px;
    }

    .radio-group {
        flex-direction: column;
    }

    .history-container {
        padding: 20px 16px;
    }

    .history-filters select {
        width: 100%;
    }

    .profile-container {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 16px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 12px;
    }

    .data-table {
        font-size: 12px;
    }

    .data-table th,
    .data-table td {
        padding: 10px 8px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 16px;
        font-size: 14px;
    }

    .input-group input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .modal {
        padding: 24px 20px;
        margin: 10px;
    }

    .toast-container {
        left: 16px;
        right: 16px;
        top: 10px;
    }

    .toast {
        max-width: 100%;
        font-size: 13px;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .auth-tabs {
        gap: 6px;
    }

    .auth-tab {
        padding: 10px;
        font-size: 14px;
    }

    .dashboard-header {
        padding: 10px 12px;
    }

    .header-content {
        gap: 8px;
    }

    #user-id-display {
        font-size: 12px;
    }

    .btn-notification {
        padding: 6px 8px;
        font-size: 14px;
    }

    .btn-theme-toggle {
        padding: 6px 8px;
        font-size: 12px;
    }

    .btn-logout {
        padding: 6px 10px;
        font-size: 11px;
    }

    .btn-return-admin {
        padding: 6px 10px;
        font-size: 11px;
    }

    .dashboard-main {
        padding: 16px 12px;
        gap: 16px;
    }

    .withdrawal-section,
    .history-section,
    .profile-section,
    .announcement-section,
    .stats-section {
        padding: 16px;
    }

    .withdrawal-container,
    .history-container,
    .profile-card,
    .password-card,
    .announcement-container,
    .stats-container {
        padding: 16px;
    }

    .withdrawal-section h2,
    .history-section h2,
    .announcement-container h2,
    .stats-container h2,
    .profile-container h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .stat-item {
        padding: 14px;
        gap: 12px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .data-table {
        font-size: 11px;
        min-width: 500px;
    }

    .data-table th,
    .data-table td {
        padding: 8px 6px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 14px;
        font-size: 13px;
    }

    .input-group input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .input-group label {
        font-size: 13px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .step span {
        font-size: 10px;
    }

    .file-upload {
        padding: 16px;
    }

    .modal {
        padding: 20px 16px;
        margin: 8px;
    }

    .toast-container {
        left: 12px;
        right: 12px;
        top: 8px;
    }

    .toast {
        font-size: 12px;
        padding: 12px 16px;
    }

    .scroll-top-btn {
        bottom: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .coin-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dashboard-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==================== CƏDVƏL STİLLƏRİ ==================== */

.table-container {
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-container::-webkit-scrollbar {
    height: 6px;
}

.table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.data-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.data-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 14px 16px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.data-table tbody tr {
    transition: all 0.3s ease;
    animation: rowFadeIn 0.4s ease-out backwards;
}

.data-table tbody tr:nth-child(1) { animation-delay: 0.02s; }
.data-table tbody tr:nth-child(2) { animation-delay: 0.04s; }
.data-table tbody tr:nth-child(3) { animation-delay: 0.06s; }
.data-table tbody tr:nth-child(4) { animation-delay: 0.08s; }
.data-table tbody tr:nth-child(5) { animation-delay: 0.1s; }

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

.data-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* ==================== STATUS BADGE STİLLƏRİ ==================== */

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-approved {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==================== BİLDİRİŞ STİLLƏRİ ==================== */

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    width: min(360px, calc(100vw - 32px));
    max-height: 480px;
    overflow-y: auto;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 640px) {
    .notification-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        margin: 0;
        transform-origin: bottom center;
    }
}

.notification-dropdown.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.notification-dropdown:not(.hidden) {
    opacity: 1;
    transform: scale(1);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.notification-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.notification-close {
    background: none;
    border: none;
    color: #888;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.notification-list {
    padding: 8px;
}

.notification-item {
    padding: 14px 16px;
    border-radius: 10px;
    transition: all 0.2s;
    cursor: pointer;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.notification-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.notification-item-header strong {
    font-size: 14px;
    font-weight: 600;
}

.notification-item-date {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.notification-item-message {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}

.notification-empty {
    padding: 30px 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* ==================== LIGHT MODE STİLLƏRİ ==================== */

body.light-mode {
    background: #f5f5f7;
    color: #1d1d1f;
}

body.light-mode .auth-container {
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
}

body.light-mode .auth-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .auth-tab {
    color: #666;
}

body.light-mode .auth-tab.active {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

body.light-mode .input-group label {
    color: #555;
}

body.light-mode .input-group input {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

body.light-mode .input-group input::placeholder {
    color: #999;
}

body.light-mode .dashboard-header {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .header-content h1 {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode #user-id-display {
    color: #666;
}

body.light-mode .btn-notification {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

body.light-mode .btn-notification:hover {
    background: rgba(0, 0, 0, 0.1);
}

body.light-mode .notification-badge {
    border-color: #f5f5f7;
}

body.light-mode .coin-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-mode .coin-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(99, 102, 241, 0.3);
}

body.light-mode .coin-symbol {
    color: #888;
}

body.light-mode .withdrawal-container,
body.light-mode .history-container,
body.light-mode .profile-container,
body.light-mode .stats-container,
body.light-mode .announcement-container {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .profile-card,
body.light-mode .password-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .step-number {
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .step span {
    color: #888;
}

body.light-mode .radio-label {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .radio-label:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(99, 102, 241, 0.3);
}

body.light-mode .file-upload {
    border: 2px dashed rgba(0, 0, 0, 0.15);
}

body.light-mode .file-upload:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

body.light-mode .file-upload label {
    color: #666;
}

body.light-mode .points-value {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
}

body.light-mode .btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

body.light-mode .salary-notification {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

body.light-mode .salary-header h2 {
    color: #16a34a;
}

body.light-mode .salary-header h2::before {
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
}

body.light-mode .salary-info-row {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-mode .salary-label {
    color: #666;
}

body.light-mode .btn-salary-claim {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

body.light-mode .status-badge {
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

body.light-mode .status-approved {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

body.light-mode .status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

body.light-mode .notification-dropdown {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.light-mode .notification-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .notification-header h3 {
    color: #1d1d1f;
}

body.light-mode .notification-close {
    color: #888;
}

body.light-mode .notification-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #1d1d1f;
}

body.light-mode .notification-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

body.light-mode .notification-item-header strong {
    color: #1d1d1f;
}

body.light-mode .notification-item-date {
    color: #888;
}

body.light-mode .notification-item-message {
    color: #555;
}

body.light-mode .notification-empty {
    color: #888;
}

body.light-mode .announcement-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

body.light-mode .announcement-card:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
}

body.light-mode .announcement-header h3 {
    color: #1d1d1f;
}

body.light-mode .announcement-date {
    color: #666;
}

body.light-mode .announcement-message {
    color: #555;
}

body.light-mode .toast {
    color: #1d1d1f;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

body.light-mode .toast-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
    color: #fff;
}

body.light-mode .toast-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
    color: #fff;
}

body.light-mode .toast-info {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%);
    color: #fff;
}

body.light-mode .scroll-top-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
}

body.light-mode .salary-claimed {
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .salary-status-pending {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #d97706;
}

body.light-mode .salary-status-approved {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #16a34a;
}

body.light-mode .salary-status-rejected {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #dc2626;
}

body.light-mode .btn-modal-approve {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

body.light-mode .btn-modal-reject {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

body.light-mode .btn-modal-pending {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

body.light-mode .modal {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .modal h3 {
    color: #1d1d1f;
}

body.light-mode .modal-details p {
    color: #555;
}

body.light-mode .modal-details strong {
    color: #1d1d1f;
}

body.light-mode .btn-modal-close {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

body.light-mode .table-container {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .data-table thead {
    background: rgba(0, 0, 0, 0.03);
}

body.light-mode .data-table th {
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .data-table td {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    color: #1d1d1f;
}

body.light-mode .data-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

body.light-mode .filters select,
body.light-mode .history-filters select {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

body.light-mode .filters select option,
body.light-mode .history-filters select option {
    background: #fff;
    color: #1d1d1f;
}

body.light-mode .page-btn {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

body.light-mode .page-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
}

body.light-mode .profile-label {
    color: #666;
}

body.light-mode .profile-value {
    color: #1d1d1f;
}

body.light-mode .stat-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .stat-item:hover {
    background: rgba(0, 0, 0, 0.04);
}

body.light-mode .stat-item .stat-icon {
    background: rgba(99, 102, 241, 0.1);
}

body.light-mode .stat-item .stat-label {
    color: #666;
}

body.light-mode .history-container h2::before,
body.light-mode .profile-container > h2::before,
body.light-mode .stats-container > h2::before {
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
}

/* ==================== ADMIN LIGHT MODE STİLLƏRİ ==================== */

body.light-mode .sidebar {
    background: rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .sidebar-header h1 {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .nav-item {
    color: #666;
}

body.light-mode .nav-item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #1d1d1f;
}

body.light-mode .nav-item.active {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

body.light-mode .main-content {
    background: #f5f5f7;
}

body.light-mode .content-section h2 {
    color: #1d1d1f;
}

body.light-mode .content-section h2::before {
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
}

body.light-mode .stat-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .stat-card:hover {
    background: rgba(0, 0, 0, 0.04);
}

body.light-mode .stat-label {
    color: #666;
}

body.light-mode .search-bar input {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

body.light-mode .search-bar input::placeholder {
    color: #999;
}

body.light-mode .action-bar .search-bar input {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

body.light-mode .btn-export {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

body.light-mode .btn-export:hover {
    background: rgba(34, 197, 94, 0.2);
}

body.light-mode .btn-bulk-approve {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

body.light-mode .btn-bulk-reject {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

body.light-mode .btn-bulk-clear {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #666;
}

body.light-mode .btn-bulk-clear:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
}

body.light-mode .salary-upload-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .salary-upload-card h3 {
    color: #1d1d1f;
}

body.light-mode .upload-hint {
    color: #666;
}

body.light-mode .file-upload-area {
    border: 2px dashed rgba(0, 0, 0, 0.15);
}

body.light-mode .file-upload-area:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

body.light-mode .file-name {
    color: #666;
}

body.light-mode .salary-data-info {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

body.light-mode .salary-data-info h3 {
    color: #16a34a;
}

body.light-mode .salary-data-info p {
    color: #666;
}

body.light-mode .modal {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .modal h3 {
    color: #1d1d1f;
}

body.light-mode .modal-details p {
    color: #555;
}

body.light-mode .modal-details strong {
    color: #1d1d1f;
}

/* ==================== TOAST BİLDİRİŞ STİLLƏRİ ==================== */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: toastSlideIn 0.3s ease-out;
    pointer-events: auto;
    max-width: 400px;
}

.toast-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.toast-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.toast-info {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.toast-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

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

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.hiding {
    animation: toastSlideOut 0.3s ease-in forwards;
}

/* ==================== STATİSTİKA STİLLƏRİ ==================== */

.stats-section {
    grid-column: 1 / -1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.stats-container > h2 {
    grid-column: 1 / -1;
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-container > h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    animation: statFadeIn 0.5s ease-out backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.05s; }
.stat-item:nth-child(2) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.15s; }
.stat-item:nth-child(4) { animation-delay: 0.2s; }

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(-5deg);
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* ==================== ELAN STİLLƏRİ ==================== */

.announcement-section {
    grid-column: 1 / -1;
}

.announcement-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.announcement-container > h2 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.announcement-container > h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.announcement-container > h2 {
    grid-column: 1 / -1;
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.announcement-container > h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.announcement-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    animation: announcementFadeIn 0.5s ease-out backwards;
}

.announcement-card:nth-child(1) { animation-delay: 0.1s; }
.announcement-card:nth-child(2) { animation-delay: 0.2s; }
.announcement-card:nth-child(3) { animation-delay: 0.3s; }

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

.announcement-card:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    transform: translateY(-2px);
}

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

.announcement-header h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.announcement-date {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.announcement-message {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* ==================== SCROLL TO TOP STİLLƏRİ ==================== */

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.scroll-top-btn.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* YENİLƏNMƏ EKRANI */
.maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.maintenance-card {
    max-width: 420px;
    animation: maintenanceFadeIn 0.5s ease-out;
}

@keyframes maintenanceFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.maintenance-icon {
    font-size: 52px;
    margin-bottom: 18px;
}

.maintenance-card h1 {
    font-size: 26px;
    margin-bottom: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.maintenance-card p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
}

/* Mobil üçün responsive cədvəllər (kart görünüşü) */
@media (max-width: 640px) {
    .table-container {
        overflow-x: visible;
    }

    .data-table,
    .data-table thead,
    .data-table tbody,
    .data-table tr,
    .data-table td {
        display: block;
        width: 100%;
    }

    .data-table {
        min-width: 0;
    }

    .data-table thead {
        display: none;
    }

    .data-table tbody tr {
        margin-bottom: 14px;
        padding: 6px 4px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
    }

    .data-table tbody tr:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .data-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 12px;
        text-align: right;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .data-table tbody tr td:first-child {
        border-top: none;
    }

    .data-table td[data-label=""]::before {
        display: none;
    }

    .data-table td::before {
        content: attr(data-label);
        color: #888;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: left;
        flex-shrink: 0;
    }

    input,
    select,
    textarea,
    button {
        max-width: 100%;
    }

    .dashboard-main,
    .withdrawal-section,
    .history-section,
    .profile-section,
    .stats-section,
    .announcement-section,
    .salary-section {
        max-width: 100%;
        overflow-wrap: break-word;
    }
}

