/* Sports Tabs Styling */
.sports-tabs {
    background-color: var(--primary-light);
    border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
    padding: 10px;
    border-bottom: 1px solid var(--primary-light);
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.sports-tabs .nav-link {
    color: var(--text-medium);
    background-color: transparent;
    border-radius: 8px;
    padding: 12px 20px;
    margin-right: 5px;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border: none;
}

.sports-tabs .nav-link:hover {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

.sports-tabs .nav-link.active {
    color: var(--primary-medium);
    background-color: var(--accent-blue);
}

.sports-icon {
    font-size: 1.2rem;
}

.sport-status-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.5rem;
}

/* Match Card Styling */
.match-card {
    background-color: var(--primary-medium);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    border: 1px solid var(--primary-light);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-blue);
}

.match-card-header {
    padding: 12px 15px;
    background-color: var(--primary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-type {
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 500;
}

.match-time {
    color: var(--text-medium);
    font-size: 0.85rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    background-color: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.match-card-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.teams-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.team {
    display: flex;
    align-items: center;
    width: 40%;
}

.team-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    padding: 5px;
    margin-right: 10px;
    object-fit: contain;
}

.team-info {
    overflow: hidden;
}

.team-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary-medium);
}

.team-score {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.versus {
    width: 20%;
    text-align: center;
    font-weight: 700;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.match-status {
    margin-top: auto;
    border-radius: 6px;
    padding: 10px;
}

.status-text {
    color: var(--primary-medium);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}

.betting-info {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 10px;
}

.betting-info .badge {
    font-weight: 500;
    font-size: 0.75rem;
}

.match-card-footer {
    padding: 12px 15px;
    background-color: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--primary-light);
}

.odds-container {
    display: flex;
    justify-content: space-between;
}

.odds-item {
    text-align: center;
    flex: 1;
}

.odds-label {
    color: var(--text-medium);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.odds-value {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Empty State */
.empty-state {
    color: var(--text-light);
}

.empty-state p {
    max-width: 400px;
    margin: 0 auto;
}
