/*
	Theme Name:   Musitone Child
	Theme URI:    http://muziktz.com/
	Description:  The best theme for Music website designed by King David 
	Author:       King David
	Author URI:   https://muziktz.com
	Template:     jannah
	Version:      1.0.0
	License:      license purchased
	License URI:  http://themeforest.net/licenses/regular_extended
	Tags:         Tags: two-columns, buddypress, left-sidebar, right-sidebar, custom-menu, editor-style, featured-images, full-width-template, microformats, rtl-language-support, sticky-post, threaded-comments, translation-ready
	Text Domain:  musitone-child
*/


/* write custom css after this line */
/* 
/* Sports Templates Styles */

/* Standings */
.sports-standings-container {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.league-tabs {
    display: flex;
    gap: 5px;
    margin: 15px 0;
}

.league-tab {
    padding: 8px 15px;
    background: #f5f5f5;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.league-tab.active {
    background: #0073aa;
    color: white;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
}

.standings-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: center;
    border-bottom: 2px solid #dee2e6;
}

.standings-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.standings-table tr:hover {
    background: #f8f9fa;
}

.standings-table tr.champions-league {
    background: rgba(0, 115, 170, 0.05);
}

.standings-table tr.europa-league {
    background: rgba(40, 167, 69, 0.05);
}

.standings-table tr.relegation {
    background: rgba(220, 53, 69, 0.05);
}

/* Matches */
.matches-container {
    background: white;
    border-radius: 8px;
    padding: 20px;
}

.match-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
}

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

.team {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.home-team {
    justify-content: flex-start;
}

.away-team {
    justify-content: flex-end;
}

.match-vs {
    text-align: center;
    padding: 0 20px;
}

/* Betting Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tip-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: white;
}

.tip-card.tip-won {
    border-left: 4px solid #28a745;
}

.tip-card.tip-lost {
    border-left: 4px solid #dc3545;
}

.tip-card.tip-pending {
    border-left: 4px solid #ffc107;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.status-won {
    background: #d4edda;
    color: #155724;
}

.status-lost {
    background: #f8d7da;
    color: #721c24;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 8px;
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .match-teams {
        flex-direction: column;
        gap: 10px;
    }
    
    .standings-table {
        font-size: 14px;
    }
    
    .standings-table td, 
    .standings-table th {
        padding: 8px 4px;
    }
}