*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-style: normal;
}
a{
    text-decoration: none;
    font-weight: bold;
}
a:active{
    color: black;
}




body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body::-webkit-scrollbar{
    display: none;
}


/*============== Pour le bouton de retour en haut ==============*/
/* home-button.css */
.home-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #003366; /* Bleu foncé ACAD */
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #FFD700; /* Jaune ACAD */
}

.home-button svg {
    width: 18px;
    height: 18px;
}

.home-button:hover {
    background-color: #006633; /* Vert ACAD */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.home-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .home-button {
        top: 10px;
        left: 10px;
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .home-button svg {
        width: 16px;
        height: 16px;
    }
}