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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: radial-gradient(circle at top, #1d4ed8 0%, #111827 55%, #0b1120 100%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #e2e8f0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 18px 40px;
}

.curved-bg-underlay {
    position: fixed;
    top: -74px;
    left: 0;
    width: 100%;
    height: 280px;
    background: linear-gradient(180deg, rgba(255, 115, 0, 0.45), rgba(255, 115, 0, 0));
    filter: blur(22px);
    z-index: 1;
    pointer-events: none;
}

.curved-bg {
    position: fixed;
    top: -62px;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #ff8a05 0%, #ff5400 35%, #ff0066 100%);
    border-radius: 0 0 48px 48px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 18px 45px rgba(255, 84, 0, 0.32);
    pointer-events: none;
}

.curved-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/bglengkung.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.65;
}

.curved-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
}

.aurora-layer {
    position: fixed;
    inset: -40%;
    background: conic-gradient(from 120deg, rgba(99, 102, 241, 0.18), rgba(192, 132, 252, 0.24), rgba(59, 130, 246, 0.12));
    opacity: 0.7;
    animation: aurora 18s linear infinite;
    z-index: 0;
}

.aurora-layer.blur {
    filter: blur(120px);
    animation-duration: 26s;
    opacity: 0.6;
    z-index: 0;
}

@keyframes aurora {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.page-wrapper {
    position: relative;
    z-index: 3;
    width: min(520px, 100%);
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
    margin-bottom: 40px;
}

.page-topbar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 0 6px;
    margin-top: -12px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.topbar-back {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: rgba(248, 250, 252, 0.18);
    color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.topbar-back:hover {
    transform: translateY(-1px);
    background: rgba(248, 250, 252, 0.26);
}

.topbar-title h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 2px;
    letter-spacing: 0.4px;
}

.topbar-title p {
    font-size: 0.82rem;
    color: rgba(226, 232, 240, 0.75);
    margin: 0;
}

.creator-card {
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.9));
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 22px;
    box-shadow: 0 24px 60px rgba(8, 11, 22, 0.5);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: -14px;
}

.creator-card--tabs {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border: 1px solid rgba(147, 197, 253, 0.28);
    box-shadow: 0 24px 60px rgba(30, 64, 175, 0.4);
    padding-top: 18px;
}

.creator-card--tabs .card-header {
    background: rgba(15, 23, 42, 0.3);
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    margin-left: -22px;
    margin-right: -22px;
    margin-top: -18px;
    padding-left: 22px;
    padding-right: 22px;
}

.creator-card--tabs .card-header p {
    color: rgba(226, 232, 240, 0.82);
}

.creator-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    margin: -6px 0 22px;
}

.creator-tabs::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 1px;
    background: rgba(226, 232, 240, 0.18);
}

.creator-tab {
    position: relative;
    background: transparent;
    border: none;
    color: rgba(226, 232, 240, 0.5);
    font-weight: 800;
    font-size: 0.86rem;
    letter-spacing: 0.2px;
    padding: 8px 6px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.creator-tab::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3px;
    width: 48%;
    height: 0;
    border-radius: 999px;
    background: transparent;
    transition: height 0.2s ease, background 0.2s ease;
}

.creator-tab.active {
    color: #f8fafc;
}

.creator-tab.active::after {
    height: 3px;
    background: linear-gradient(90deg, #38bdf8 0%, #6366f1 100%);
}

.creator-tab:not(.active):hover {
    color: rgba(248, 250, 252, 0.8);
}

.creator-panels {
    position: relative;
    margin-top: -18px;
}

.creator-panel {
    display: none;
}

.creator-panel.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

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

.tab-panel-empty {
    text-align: center;
    padding: 1.2rem 0.8rem;
    opacity: 0.78;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    color: #f8fafc;
}

.tab-panel-empty i {
    font-size: 2.1rem;
}

.tab-panel-empty p {
    font-size: 0.92rem;
    font-weight: 700;
}

.tab-panel-empty span {
    font-size: 0.78rem;
    line-height: 1.35;
    opacity: 0.85;
}

.rewards-table-container {
    overflow-x: auto;
    margin-top: 8px;
}

.creator-panel[data-panel="rewards"] .rewards-table-container,
.creator-panel[data-panel="global"] .rewards-table-container {
    overflow-y: auto;
    overflow-x: auto;
    max-height: calc(5 * 60px + 50px); /* 5 rows + header height */
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.rewards-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.creator-panel[data-panel="rewards"] .rewards-table,
.creator-panel[data-panel="global"] .rewards-table {
    border-radius: 0;
    border: none;
}

.rewards-table thead {
    background: rgba(30, 41, 59, 0.6);
}

.creator-panel[data-panel="rewards"] .rewards-table thead,
.creator-panel[data-panel="global"] .rewards-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.rewards-table th {
    padding: 14px 12px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(226, 232, 240, 0.9);
    letter-spacing: 0.3px;
    border-bottom: 2px solid rgba(148, 163, 184, 0.25);
}

.rewards-table td {
    padding: 16px 12px;
    font-size: 0.88rem;
    color: rgba(226, 232, 240, 0.85);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.rewards-table tbody tr:last-child td {
    border-bottom: none;
}

.rewards-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.1);
}

.platform-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.platform-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.platform-date {
    font-size: 0.7rem;
    color: rgba(148, 163, 184, 0.75);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.platform-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 6px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.platform-youtube {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
}

.platform-tiktok {
    background: rgba(0, 0, 0, 0.3);
    color: #f8fafc;
}

.platform-telegram {
    background: rgba(0, 136, 204, 0.2);
    color: #60a5fa;
}

.platform-badge i {
    font-size: 0.9rem;
}

.content-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.4);
    border-radius: 8px;
    color: #60a5fa;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 28px;
    height: 28px;
}

.content-view-btn:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: rgba(96, 165, 250, 0.6);
    color: #38bdf8;
    transform: translateY(-1px);
}

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

.content-view-btn i {
    font-size: 0.75rem;
}

.reward-amount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #fcd34d;
}

.reward-amount i {
    font-size: 0.85rem;
}

.creator-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

/* Rank 1 - Red */
.creator-rank.rank-first {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.3));
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

tr.rank-first {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.05));
}

tr.rank-first:hover {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
}

/* Rank 2 - Yellow */
.creator-rank.rank-second {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.3));
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.3);
}

tr.rank-second {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.08), rgba(245, 158, 11, 0.05));
}

tr.rank-second:hover {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.1));
}

/* Rank 3 - Green */
.creator-rank.rank-third {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.3));
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

tr.rank-third {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.08), rgba(22, 163, 74, 0.05));
}

tr.rank-third:hover {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
}

.creator-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.9);
}

.content-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.85);
}

.content-label {
    font-size: 0.7rem;
}

.reward-amount-multiple {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reward-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.reward-item i {
    font-size: 0.85rem;
}

.reward-item:has(.fa-coins) {
    color: #fcd34d;
}

.reward-item:has(.fa-gem) {
    color: #60a5fa;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-approved {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.status-pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.status-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.status-icon.status-approved {
    color: #4ade80;
}

.status-icon.status-pending {
    color: #fbbf24;
}

.status-icon.status-rejected {
    color: #ef4444;
}

.status-icon.status-completed {
    color: #94a3b8;
}

.status-text {
    font-size: 0.82rem;
    font-weight: 600;
}

.status-text-pending {
    color: #fbbf24;
}

.status-text-rejected {
    color: #ef4444;
}

.status-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-actions--stacked {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.claim-btn,
.complete-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.claim-btn {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.4);
}

.claim-btn:hover:not(:disabled) {
    background: rgba(59, 130, 246, 0.3);
    color: #38bdf8;
    transform: translateY(-1px);
}

.claim-btn:disabled {
    background: rgba(148, 163, 184, 0.15);
    color: rgba(148, 163, 184, 0.5);
    border-color: rgba(148, 163, 184, 0.2);
    cursor: not-allowed;
}

.complete-btn {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.complete-btn:hover:not(:disabled) {
    background: rgba(34, 197, 94, 0.3);
    color: #22c55e;
    transform: translateY(-1px);
}

.complete-btn:disabled,
.complete-btn--done {
    background: rgba(148, 163, 184, 0.15);
    color: rgba(148, 163, 184, 0.5);
    border-color: rgba(148, 163, 184, 0.2);
    cursor: not-allowed;
}

.reason-btn {
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    background: rgba(59, 130, 246, 0.08);
    color: #93c5fd;
    font-weight: 600;
    font-size: 0.65rem;
    line-height: 1.1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reason-btn:hover {
    background: rgba(59, 130, 246, 0.18);
    color: #bfdbfe;
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(236, 72, 153, 0.25));
    color: #e0f2fe;
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-weight: 700;
}

.card-header h2 {
    font-size: 1.35rem;
    color: #f8fafc;
    line-height: 1.25;
}

.card-header p {
    color: rgba(209, 213, 219, 0.78);
    line-height: 1.32;
}

.card-header-note {
    color: rgba(148, 163, 184, 0.9) !important;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 4px;
    font-style: italic;
}

.creator-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field#whatsappField {
    display: flex;
}

.form-field#whatsappField[style*="display:none"] {
    display: none !important;
}

.form-field label {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.92);
    letter-spacing: 0.2px;
}

.field-control {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(96, 165, 250, 0.4);
    border-radius: 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.field-control:hover {
    border-color: rgba(129, 140, 248, 0.75);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.field-control--select .field-arrow {
    display: block;
}

.field-control--select select {
    padding-right: 44px;
}

.field-arrow {
    display: none;
}

.field-icon {
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(165, 180, 252, 0.9);
    font-size: 1rem;
    border-right: 1px solid rgba(148, 163, 184, 0.25);
}

.field-control select,
.field-control input {
    flex: 1;
    border: none;
    background: transparent;
    color: #f8fafc;
    font-size: 0.9rem;
    padding: 12px 44px 12px 16px;
    appearance: none;
    width: 100%;
}

.field-control select {
    cursor: pointer;
    text-align: left;
}

.field-control select:focus,
.field-control input:focus {
    outline: none;
}

.field-control select option {
    color: #f8fafc;
    background: #0f172a;
}

.field-control .field-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(148, 163, 184, 0.85);
    font-size: 0.78rem;
}

.field-control select::-ms-expand {
    display: none;
}

.field-control select:focus {
    background: rgba(23, 37, 84, 0.95);
}

.helper-text {
    font-size: 0.72rem;
    color: rgba(148, 163, 184, 0.85);
    line-height: 1.28;
}

.creator-tips {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-top: 8px;
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.9rem;
}

.tips-header i {
    font-size: 1.1rem;
    color: #fbbf24;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
}

.tips-list li i {
    color: #60a5fa;
    margin-top: 2px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tips-note {
    color: rgba(148, 163, 184, 0.85);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transform-origin: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 18px 50px rgba(8, 145, 178, 0.35);
}

.submit-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 20px 55px rgba(14, 165, 233, 0.45);
}

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

.page-footer {
    display: flex;
    justify-content: center;
}

.footer-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 460px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.22), rgba(79, 70, 229, 0.18));
    border: 1px solid rgba(148, 163, 184, 0.24);
    color: rgba(226, 232, 240, 0.92);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-card i {
    color: #fcd34d;
    font-size: 1.2rem;
    margin-top: 2px;
}

@media (max-width: 600px) {
    body {
        padding: 16px;
    }

    .page-wrapper {
        gap: 18px;
    }

    .page-topbar {
        padding: 4px 0 8px;
        gap: 10px;
    }

    .topbar-back {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .topbar-title h1 {
        font-size: 1.2rem;
    }

    .topbar-title p {
        font-size: 0.75rem;
    }

    .page-header,
    .creator-card {
        padding: 22px;
        border-radius: 20px;
    }

    .creator-card--tabs .card-header {
        margin-top: -22px;
    }

    .rewards-table {
        font-size: 0.8rem;
    }

    .rewards-table th,
    .rewards-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }

    .rewards-table th {
        font-size: 0.75rem;
    }

    .platform-cell {
        gap: 5px;
    }

    .platform-date {
        font-size: 0.65rem;
    }

    .platform-icon img {
        width: 22px;
        height: 22px;
    }

    .platform-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .status-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .status-cell {
        gap: 8px;
    }

    .status-icon {
        font-size: 1rem;
    }

    .status-text {
        font-size: 0.75rem;
    }

    .status-actions {
        gap: 4px;
    }

    .claim-btn,
    .complete-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .content-view-btn {
        width: 26px;
        height: 26px;
        padding: 5px;
    }

    .content-view-btn i {
        font-size: 0.7rem;
    }

    .creator-rank {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .creator-name {
        font-size: 0.85rem;
    }

    .content-count {
        font-size: 0.85rem;
    }

    .content-label {
        font-size: 0.65rem;
    }

    .reward-amount-multiple {
        gap: 8px;
    }

    .reward-item {
        font-size: 0.8rem;
    }

    .reward-item i {
        font-size: 0.75rem;
    }

    .submit-btn {
        width: 100%;
    }

    .card-header-note {
        font-size: 0.8rem;
    }

    .creator-tips {
        padding: 12px;
    }

    .tips-header {
        font-size: 0.85rem;
        gap: 8px;
    }

    .tips-header i {
        font-size: 1rem;
    }

    .tips-list {
        gap: 8px;
    }

    .tips-list li {
        font-size: 0.8rem;
        gap: 8px;
    }

    .tips-list li i {
        font-size: 0.85rem;
    }

    .tips-note {
        font-size: 0.75rem;
        padding-top: 6px;
    }
}

/* Notification Styles */
#notification-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    pointer-events: none;
}

.notification {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 12px;
    min-width: 320px;
    max-width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: auto;
    transform: translateY(-120%);
    opacity: 0;
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    opacity: 0.8;
}

.notification--success::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.notification--error::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.notification--warning::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.notification--success .notification-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.notification--error .notification-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.notification--warning .notification-icon {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.notification--info .notification-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.4;
}

.notification-message {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.notification-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(148, 163, 184, 0.1);
    color: #e2e8f0;
}

.notification-ok-btn {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.notification-ok-btn:hover {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

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

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

.notification.hide {
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-120%);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    #notification-container {
        padding: 12px;
    }

    .notification {
        min-width: 280px;
        padding: 14px 18px;
        gap: 12px;
    }

    .notification-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .notification-title {
        font-size: 0.9rem;
    }

    .notification-message {
        font-size: 0.8rem;
    }

    .notification-ok-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

/* Rejection Reason Modal */
.reason-modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.65);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 12000;
    padding: 18px;
}

.reason-modal.visible {
    display: flex;
}

.reason-modal-content {
    width: 100%;
    max-width: 420px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.6);
    overflow: hidden;
    animation: slideInModal 0.25s ease;
}

.reason-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.reason-modal-header h3 {
    font-size: 1.05rem;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.reason-modal-header h3 i {
    color: #fbbf24;
}

.reason-modal-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1rem;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.reason-modal-close:hover {
    color: #f8fafc;
    background: rgba(148, 163, 184, 0.15);
}

.reason-modal-body {
    padding: 20px 22px;
}

.reason-modal-body p {
    margin: 0;
    color: rgba(226, 232, 240, 0.92);
    line-height: 1.5;
    font-size: 0.93rem;
    white-space: pre-line;
}

.reason-modal-footer {
    padding: 16px 22px 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    justify-content: flex-end;
}

.reason-modal-btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reason-modal-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.45);
}

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

@media (max-width: 600px) {
    .reason-modal-content {
        border-radius: 14px;
    }

    .reason-modal-header,
    .reason-modal-body,
    .reason-modal-footer {
        padding: 16px;
    }

    .reason-modal-header h3 {
        font-size: 0.95rem;
    }

    .reason-modal-body p {
        font-size: 0.85rem;
    }
}

