:root {
    --couleur-principale-fonce: #2c3e50;
    --couleur-principale-pale: #34495e;
    --couleur-principale-tres-pale: #ecf0f1;
    --couleur-secondaire-fonce: #95a5a6;
    --couleur-secondaire-pale: #bdc3c7;
    --couleur-punch-fonce: #d35400;
    --couleur-punch-pale: #e67e22;
}

.unenote .date {
    color: var(--couleur-punch-fonce);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

.bouton {
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bouton:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: var(--couleur-punch-pale);
}

.unenote {
    transition: transform 0.2s ease;
}

.unenote:hover {
    transform: scale(1.02);
    border: 1px solid var(--couleur-punch-pale);
    z-index: 10;
}
svg {
    width: 50px;
    height: auto;
}
.container img{
    max-height: 500px;
}
