/* Sports Display Plugin Styles */
.sports-table {
    margin: 20px 0;
    border-collapse: collapse;
    width: 100%;
    /* Colors will be set by dynamic CSS */
}

.sports-table th {
    padding: 12px 8px;
    text-align: left;
    font-weight: bold;
    /* Colors will be set by dynamic CSS */
}

.sports-table td {
    padding: 10px 8px;
    /* Colors will be set by dynamic CSS */
}

.sports-table td:first-child {
    font-weight: bold;
}

/* Team logos */
.sports-table img {
    vertical-align: middle;
    margin-right: 8px;
}

/* Competition headers */
.sports-display h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

.sports-display h4 {
    margin-top: 15px;
    margin-bottom: 8px;
    color: #555;
}

/* Fixtures specific styling */
.fixtures-table .score-cell {
    text-align: center;
    font-weight: bold;
}

.fixtures-table .upcoming {
    color: #0073aa;
}

.fixtures-table .completed {
    color: #46b450;
}

/* Results specific styling */
.results-table .score-result {
    text-align: center;
    font-weight: bold;
    color: #46b450;
    font-size: 1.1em;
}

.results-table td:nth-child(3) {
    text-align: center;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    .sports-table {
        font-size: 14px;
    }
    
    .sports-table th,
    .sports-table td {
        padding: 8px 4px;
    }
    
    .fixtures-table th:nth-child(5),
    .fixtures-table td:nth-child(5) {
        display: none; /* Hide location on mobile */
    }
}

/* Competition filter styling */
.sports-filter-container {
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: right;
}

.sports-filter-container label {
    font-weight: bold;
    margin-right: 10px;
    color: #333;
    display: inline;
}

.sports-competition-filter {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    min-width: 200px;
    display: inline;
}

.sports-competition-filter:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 3px rgba(0, 115, 170, 0.3);
} 