.month-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    margin-left: auto;
    margin-right: auto;
}

.month-card:hover {
    transform: translateY(-5px);
}

.month-header {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #007bff; /* Couleur par défaut, sera dynamiquement remplacée */
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

.competition-list {
    background-color: #f9f9f9;
    padding: 15px;
}

.competition-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.competition-item:last-child {
    border-bottom: none;
}

.text-muted {
    color: #6c757d !important;
}

@media (max-width: 700px) {

}