﻿.prediction-card {
    transition: all 0.3s ease;
    background: #fff;
}

    .prediction-card:hover {
        border-color: #ffcc00 !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
    }

.status-badge-top {
    position: absolute;
    top: 12px;
    right: 12px;
    margin: 0 !important;
    min-width: 80px;
    padding: 4px 8px;
    font-size: 0.65rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 2;
    letter-spacing: 0.5px;
}

.team-name-row {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 800;
    color: #1a1d20;
    font-size: 0.85rem;
    display: block;
    width: 100%;
    line-height: 1.3;
}

.prediction-box {
    padding: 6px 10px;
    border-radius: 8px;
}

.final-score-in-box {
    font-size: 0.70rem;
    font-weight: 900;
    text-align: center;
    width: 100%;
}

.chat-bubble {
    border-radius: 8px;
    color: #ced4da;
    font-style: italic;
    padding: 8px 10px;
    font-size: 0.7rem;
    border: 1px solid transparent;
}

.vote-btn {
    transition: 0.2s;
    font-weight: bold;
    font-size: 0.7rem;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .vote-btn:hover {
        transform: scale(1.05);
    }

.member-profile-link:hover {
    color: #ffcc00 !important;
}

.blink-live {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.6;
    }
}

.vip-tabs-container {
    background: #1a1d20;
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #333;
    margin-bottom: 25px;
}

.custom-vip-tabs {
    display: flex;
    flex-wrap: nowrap !important;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .custom-vip-tabs .nav-link {
        color: #ffffff !important;
        border-radius: 50px;
        padding: 8px 20px;
        font-weight: 800;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        border: none;
        opacity: 0.8;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

        .custom-vip-tabs .nav-link.active {
            background: #ffcc00 !important;
            color: #000000 !important;
            opacity: 1;
            box-shadow: 0 4px 12px rgba(255,204,0,0.4);
        }

.leaderboard-row {
    transition: 0.3s;
    background: #1c1c1c;
    border-radius: 12px;
    margin-bottom: 8px;
    border: 1px solid #333;
    padding: 12px;
}

@media (max-width: 991px) {
    .vip-tabs-container {
        display: flex;
        width: 100%;
        padding: 4px;
        border-radius: 12px;
    }

    .custom-vip-tabs .nav-link {
        flex: 1;
        width: 100%;
        padding: 8px 2px !important;
        font-size: 0.65rem !important;
    }

        .custom-vip-tabs .nav-link i {
            display: none !important;
        }

    .vip-arena-header {
        padding: 15px;
        text-align: center;
    }

        .vip-arena-header h3 {
            font-size: 1.1rem;
        }
}
