.btn-cta {
    background-color: #B725CB;
    border: none;
    color: white;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    color: white;
    background-color: #a01caf;
}

.date-link {
    display: inline-block;
    padding: 8px 12px;
    background-color: #b9e6e8; 
    border-radius: 18px;
    font-size: 0.875rem; 
    font-weight: 500; 
    color: #4a556881; 
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.date-link:hover {
    background-color: #B725CB;
    color: white; 
}

.full-date {
    display: none;
}

.short-date {
    display: inline;
}

@media (min-width: 1024px) { 
    .full-date {
        display: inline;
    }
    .short-date {
        display: none;
    }
}

.date-link.active {
    background-color: #B725CB; 
    color: white; 
}

.match-tournoi {
    border: 2px solid #B725CB;
    background-color: #fae8ff; 
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.match{
    border-radius: 18px;
}

.match-tournoi .tournament-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    /* background-color: gold; */
    color: white;
    /* padding: 4px 8px; */
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 18px;
}

.match-playoff {
    background-color: #2C1133;
    border: 2px solid rgba(183, 37, 203, 0.3);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.match-playoff a, .match-playoff span {
    color: white !important;
}

.match-playoff #score {
    color: black !important;
}

.match-playoff .playoff-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 18px;
}


.match-playoff.match-tournoi {
    background: linear-gradient(135deg, #fff8e1 50%, #fae8ff 50%);
    border: 2px solid;  
}

.match-playoff.match-tournoi .playoff-badge {
    right: 55px;
}
