.season-selector {
    margin: 20px 0;
    text-align: center;
}

.season-selector select {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.season-selector button {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #587e6b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.season-selector button:hover {
    background-color: #45a049;
}

.current-season {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: beige;
}

.no-data-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.no-data-content {
    max-width: 600px;
    margin: 0 auto;
}

.no-data-icon {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
}

.no-data-message h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.no-data-message p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.redirect-options {
    margin-top: 30px;
}

.redirect-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.redirect-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.redirect-btn.primary {
    background-color: #4CAF50;
    color: white;
}

.redirect-btn.primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.redirect-btn.secondary {
    background-color: #2196F3;
    color: white;
}

.redirect-btn.secondary:hover {
    background-color: #1976D2;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .redirect-buttons {
        flex-direction: column;
        align-items: center;
    }

    .redirect-btn {
        width: 100%;
        max-width: 280px;
    }
}