/* -- General Body and Background Styles -- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #121420;
    background-image:
        radial-gradient(circle at 25% 30%, rgba(55, 65, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(86, 93, 140, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    color: #E6EDF3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CORRECTED STYLES FOR FIXED TOPBAR ===== */
body {
    padding-top: 5rem;
}

#sidebar {
    top: 5rem;
    height: calc(100vh - 5rem);
}

@media (max-width: 767px) {
    #sidebar {
        top: 0;
        height: 100vh;
    }
}

/* --- MOBILE SIDEBAR FIX --- */
body.sidebar-open #sidebar {
    transform: translateX(0);
}

body.sidebar-open #overlay {
    display: block;
}

/* --- Main Content Layout --- */
.main-content {
    transition: margin-left 0.3s ease-in-out;
}

@media (min-width: 768px) {
    .main-content {
        margin-left: 16rem;
    }
}

/* --- Sidebar Active Link --- */
.sidebar-link-active {
    background-color: #facc15; /* A bright, attention-grabbing color */
    color: #1a1c2a; /* Dark text for contrast */
}

.sidebar-link-active .ml-auto {
    background-color: #1a1c2a;
    color: #facc15;
}

/* -- Loader Animations -- */
.loader {
    border: 4px solid #374151;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 5rem auto;
}

.btn-loader {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 5px;
}

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

/* --- Slot Picker UI/UX Improvements --- */
#slot-picker-app .provider-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    #slot-picker-app .provider-filters {
        flex-direction: row;
    }
}

#slot-picker-app .provider-list {
    max-height: 200px;
    overflow-y: auto;
    background: #2d3748;
    border-radius: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #4a5568;
}

#slot-picker-app .selected-providers {
    background: #2d3748;
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #4a5568;
    min-height: 100px;
}

/* --- Rainbet Promo Banner --- */
.rainbet-promo-banner {
    background: linear-gradient(135deg, #1e293b 0%, #2c3e50 100%);
    border: 1px solid #475569;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.rainbet-promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.rainbet-promo-banner .promo-text-upper {
    color: #94a3b8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.rainbet-promo-banner .promo-code {
    background: -webkit-linear-gradient(45deg, #facc15, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.rainbet-promo-banner .promo-text-lower {
    color: #cbd5e1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}


/* --- Casino Style Container --- */
.casino-container {
    background: radial-gradient(circle, #2a334c 0%, #121420 100%);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

/* --- Carousel Spinner Styles (Simplified & Corrected) --- */
.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden; /* This is essential */
}
.carousel-track {
    display: flex;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    /* REMOVED left: 50% */
}
.carousel-item {
    flex-shrink: 0;
    width: 144px; /* Container for the image, includes padding */
    padding: 0 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.carousel-item img {
    /* Sizing is now handled by Tailwind classes in the HTML (w-32 h-32) */
    filter: brightness(0.8);
    transition: filter 0.3s;
}
.carousel-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 90%; /* A bit shorter than the container */
    background-color: #f59e0b;
    box-shadow: 0 0 15px #f59e0b, 0 0 25px #f59e0b;
    border-radius: 2px;
}

/* --- Wheel Spinner Styles (Suspense Update) --- */
.wheel-container {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 8px solid #4a5568;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.6), 0 0 20px rgba(0,0,0,0.5);
    background: #2d3748;
}
.wheel-segment {
    position: absolute;
    top: 0; left: 0;
    width: 50%;
    height: 50%;
    transform-origin: 100% 100%;
}
.wheel-segment:nth-child(even) { background-color: #354157; }
.wheel-segment:nth-child(odd) { background-color: #2a334c; }
.wheel-segment-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 35px;
}
.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid #f59e0b;
    z-index: 10;
    filter: drop-shadow(0 -2px 3px rgba(0,0,0,0.5));
}

/* --- Mines Game Styles (Casino Look) --- */
.mines-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
    padding: 0.5rem;
}

@media (min-width: 640px) {
    .mines-grid {
        max-width: 600px;
    }
}

.mine {
    aspect-ratio: 1 / 1;
    perspective: 1000px;
    cursor: pointer;
}
.mine.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}
.mine-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}
.mine.flipped .mine-inner {
    transform: rotateY(180deg);
}
.mine-front, .mine-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 0.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mine-front {
    background: linear-gradient(145deg, #404a69, #24283b);
    box-shadow: inset 0 2px 2px rgba(255,255,255,0.1), inset 0 -2px 2px rgba(0,0,0,0.2);
}
.mine-back {
    transform: rotateY(180deg);
}
.mine-back.mine-gem {
    background-color: #1a1c2a;
}
.mine-back.mine-empty {
    background: #1a1c2a;
}
.mine.is-winner .mine-inner {
    animation: pulse-winner 1.2s ease-in-out;
}
@keyframes pulse-winner {
    0% { transform: rotateY(180deg) scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    50% { transform: rotateY(180deg) scale(1.1); box-shadow: 0 0 20px 10px rgba(245, 158, 11, 0); }
    100% { transform: rotateY(180deg) scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* --- Winner Overlay --- */
.winner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(18, 20, 32, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 20;
    padding: 1rem;
}

/* --- Other Component Styles (Leaderboard, Stats, etc.) --- */
.podium-card { background-color: #20242d; border: 1px solid #303642; border-radius: 0.75rem; padding: 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform 0.3s ease; position: relative; }
.podium-rank-circle { position: absolute; top: -1.25rem; left: 50%; transform: translateX(-50%); width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: #111827; border: 3px solid #111827; }
.podium-1 { transform: translateY(-50px); }
.podium-1 .podium-rank-circle { background-color: #f59e0b; }
.podium-2 .podium-rank-circle { background-color: #a3a3a3; }
.podium-3 .podium-rank-circle { background-color: #d97706; }
.podium-avatar { width: 90px; height: 90px; border-radius: 50%; margin-top: 2rem; margin-bottom: 1rem; object-fit: cover; }
.podium-1 .podium-avatar { margin-top: 4rem; } /* Adjust for elevation and padding */
.podium-user { font-size: 1.125rem; font-weight: 700; margin-bottom: 1.5rem; }
.podium-label { font-size: 0.75rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.podium-value { font-size: 1.5rem; font-weight: 600; color: #fff; margin-bottom: 1.5rem; }
.podium-prize-bar { width: 100%; padding: 0.75rem; border-radius: 0.5rem; font-size: 1.25rem; font-weight: 800; color: #111827; margin-top: auto; }
.prize-gold { background-color: #f59e0b; }
.prize-green { background-color: #22c55e; }
.prize-bronze { background-color: #f97316; }

.fade-enter-active, .fade-leave-active { transition: opacity 0.5s ease; }
.fade-enter-from, .fade-leave-to { opacity: 0; }
.winner-scroll { width: 100%; }

/* --- Reworked Community Stats -- */
.stat-card-reworked {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card-reworked:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    flex-shrink: 0;
}

/* --- noUiSlider Custom Styles --- */
#rtp-slider.noUi-target {
    background: #1f2937;
    border-color: #4b5563;
    border-radius: 9999px;
    height: 8px;
}

#rtp-slider .noUi-connect {
    background: #f59e0b;
}

#rtp-slider .noUi-handle {
    border-color: #f59e0b;
    border-radius: 50%;
    background: #111827;
    height: 24px;
    width: 24px;
    top: -8px;
    right: -12px;
    box-shadow: 0 0 0 3px #111827, 0 0 0 6px #f59e0b;
    cursor: pointer;
}

#rtp-slider .noUi-handle:after,
#rtp-slider .noUi-handle:before {
    display: none;
}

#rtp-slider .noUi-tooltip {
    background: #1f2937;
    color: #fff;
    border: 1px solid #4b5563;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.875rem;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* --- Fixed Modal Styles --- */
.fixed-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 20, 32, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 50;
}

/* --- Page Loader --- */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 20, 32, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#page-loader.visible {
    opacity: 1;
    visibility: visible;
}

/* --- 2FA Setup Page Styles --- */
.setup-2fa-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    background-color: #1a1c2a;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #374151;
}

.qr-code-container {
    text-align: center;
}

.qr-code-container img {
    border: 4px solid #374151;
    border-radius: 0.5rem;
    padding: 0.5rem;
    background-color: white;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-container label {
    font-weight: 600;
}

.form-container input[type="text"] {
    background-color: #2d3748;
    border: 1px solid #4a5568;
    color: #e6edf3;
    padding: 0.75rem;
    border-radius: 0.375rem;
}

.form-container button {
    background-color: #f59e0b;
    color: #1a1c2a;
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.form-container button:hover {
    background-color: #facc15;
}

.error-message {
    color: #ef4444;
    margin-top: 1rem;
}

.manual-code-container {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #1a1c2a;
    border: 1px solid #374151;
    border-radius: 0.5rem;
}

.manual-code-container code {
    background-color: #2d3748;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-family: monospace;
    word-break: break-all;
}

/* --- Animation Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes backgroundPan {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(250, 204, 21, 0.8);
    }
}

/* --- Animation Utility Classes --- */
.anim-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}


.anim-pulse-glow {
    animation: pulseGlow 3s infinite ease-in-out;
}

/* --- Admin Card Style --- */
.admin-card {
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.admin-card:hover {
    transform: translateY(-8px);
    background-color: rgba(55, 65, 81, 0.7);
    border-color: rgba(250, 204, 21, 0.6);
}


/* --- Sidebar Glassmorphism --- */
.sidebar-glass {
    background-color: rgba(26, 28, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid rgba(128, 128, 128, 0.2);
}

/* --- Sidebar Active Link --- */
.sidebar-link-active {
    background: linear-gradient(90deg, rgba(250, 204, 21, 0.2), rgba(250, 204, 21, 0.05));
    color: #facc15;
    border-left: 4px solid #facc15;
    font-weight: bold;
}

/* --- Profile Page Cards --- */
.profile-card {
    background-color: #24242f;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(128, 128, 128, 0.2);
}
.profile-card-header {
    background-color: rgba(0,0,0,0.2);
    padding: 1rem 1.5rem;
    font-weight: bold;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

/* -- assets/main.css additions for Top Bar -- */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1a1c2a;
    height: 5rem; /* 80px */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem; /* 16px */
    z-index: 40;
    border-bottom: 1px solid rgba(55, 65, 81, 0.5); /* border-gray-700/50 */
}

@media (min-width: 640px) {
    .top-bar {
        padding: 0 1.5rem; /* 24px */
    }
}

.top-bar-left, .top-bar-center, .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-left {
    gap: 1rem; /* 16px */
}

.menu-toggle-btn {
    color: white;
}

@media (min-width: 768px) {
    .menu-toggle-btn {
        display: none;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* 12px */
    text-decoration: none;
}

.logo-img {
    width: 2.5rem; /* 40px */
    height: 2.5rem; /* 40px */
    border-radius: 9999px; /* rounded-full */
    border: 2px solid #facc15; /* border-yellow-400 */
}

.site-title {
    font-size: 1.125rem; /* text-lg */
    font-weight: 700;
    color: white;
}

@media (max-width: 767px) {
    .site-title {
        display: none;
    }
}

.top-bar-center {
    flex-grow: 1;
    justify-content: center;
    padding: 0 0.5rem; /* 8px */
}

.top-bar-promo {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* 12px */
    background-color: rgba(31, 41, 55, 0.5); /* bg-gray-800/50 */
    padding: 0.5rem 1rem; /* 8px 16px */
    border-radius: 0.5rem; /* rounded-lg */
    transition: background-color 0.2s;
    text-decoration: none;
    max-width: 100%;
}

.top-bar-promo:hover {
    background-color: rgba(55, 65, 81, 0.5); /* hover:bg-gray-700/50 */
}

.promo-logo {
    height: 2.5rem; /* 40px */
    flex-shrink: 0;
}

@media (max-width: 639px) {
    .promo-logo {
        height: 2rem; /* 32px */
    }
}

.promo-text {
    color: white;
    text-align: left;
}

@media (max-width: 639px) {
    .promo-text {
        text-align: center;
    }
}

.promo-code {
    font-weight: 600;
    color: #facc15; /* text-yellow-400 */
    font-size: 0.75rem; /* 12px */
    line-height: 1rem; /* leading-tight */
    display: block;
}

@media (max-width: 639px) {
    .promo-code {
        font-size: 0.625rem; /* 10px */
    }
}

.promo-desc {
    font-size: 0.75rem; /* 12px */
}

@media (max-width: 639px) {
    .promo-desc {
        display: none;
    }
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* 12px */
}

.user-avatar-link {
    width: 2.5rem; /* 40px */
    height: 2.5rem; /* 40px */
    border-radius: 9999px;
    background-color: #4b5563; /* bg-gray-600 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.user-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 9999px;
}

.user-avatar-placeholder {
    width: 1.5rem; /* 24px */
    height: 1.5rem; /* 24px */
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* 8px */
    background-color: #5865F2;
    color: white;
    font-weight: 700;
    padding: 0.5rem 0.75rem; /* 8px 12px */
    border-radius: 0.5rem; /* rounded-lg */
    transition: background-color 0.2s;
    text-decoration: none;
    font-size: 0.875rem; /* text-sm */
}

.login-btn:hover {
    background-color: #4f5bda;
}

.login-btn-logo {
    width: 1.25rem; /* 20px */
    height: 1.25rem; /* 20px */
    border-radius: 0.25rem; /* rounded */
}

@media (max-width: 639px) {
    .login-btn-text {
        display: none;
    }
}

/* -- assets/main.css additions for responsive promo logo -- */

.promo-logo-desktop {
    display: block; /* Show by default */
}

.promo-logo-mobile {
    display: none; /* Hide by default */
}

/* On screens 639px wide or less (mobile) */
@media (max-width: 639px) {
    .promo-logo-desktop {
        display: none; /* Hide the desktop logo */
    }

    .promo-logo-mobile {
        display: block; /* Show the mobile logo */
        height: 2.5rem; /* 40px - adjust size as needed */
    }

    .top-bar-promo {
      gap: 0.5rem; /* Adjust gap for mobile logo */
    }
}
.tabs {
  display: flex;
  border-bottom: 1px solid #4a5568;
}

.tab-link {
  padding: 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab-link.active {
  border-bottom-color: #facc15;
  color: #facc15;
}

/* ... existing styles ... */

/* --- Reworked Community Stats -- */
.stat-card-reworked {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card-reworked:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    flex-shrink: 0;
}

/* --- Pagination Button Styles --- */
.pagination-btn {
    padding: 0.5rem 1rem;
    background-color: #374151; /* bg-gray-700 */
    border-radius: 0.375rem; /* rounded-md */
    transition: background-color 0.2s;
}
.pagination-btn:hover:not(:disabled) {
    background-color: #4b5563; /* hover:bg-gray-600 */
}
.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* --- Custom Date Input Styles --- */
.date-input {
    background-color: #1f2937; /* bg-gray-800 */
    border: 1px solid #4b5563; /* border-gray-600 */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 0.5rem 0.75rem; /* px-3 py-2 */
    color: #ffffff; /* text-white */
    color-scheme: dark;
}

/* For the calendar picker icon in WebKit browsers (Chrome, Safari) */
.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}


/* --- noUiSlider Custom Styles --- */
#rtp-slider.noUi-target {
    background: #1f2937;
    border-color: #4b5563;
    border-radius: 9999px;
    height: 8px;
}

/* --- NEW PROFILE PAGE STYLES --- */
.profile-header-card {
    background-color: #24242f;
    border-radius: 0.75rem;
    padding: 2rem;
    padding-top: 80px; /* Space for the avatar */
    border: 1px solid rgba(128, 128, 128, 0.2);
    margin-top: 64px; /* Half the avatar height */
    position: relative;
}

.profile-header-avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 4px solid #121420;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -64px; /* Half the avatar height to pull it up */
    left: 50%;
    transform: translateX(-50%);
}

.eligibility-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.eligibility-icon.success {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}
.eligibility-icon.failure {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}
.eligibility-icon svg {
    width: 0.875rem;
    height: 0.875rem;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #4a5568;
}

.tab-link {
  padding: 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab-link.active {
  border-bottom-color: #facc15;
  color: #facc15;
}