* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Satoshi", sans-serif;
    width: 100%;
    height: 100vh;
    background-color: #F5F5F5; /* Gris clair */
    color: #000000; /* Rose principal */
    overflow: hidden auto;
}

.btn {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: #FF69B4; /* Rose principal */
    background: linear-gradient(90deg, #FFB6C1, #FFC0CB); /* Dégradé de roses clairs */
    border: 1px solid #E0E0E0; /* Gris moyen */
    border-radius: 17px;
}

*::-webkit-scrollbar {
    height: 7px;
    width: 7px;
}

*::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #E0E0E0; /* Gris moyen */
}

*::-webkit-scrollbar-track:hover {
    background-color: #E0E0E0; /* Gris moyen */
}

*::-webkit-scrollbar-track:active {
    background-color: #E0E0E0; /* Gris moyen */
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #FFB6C1; /* Rose clair */
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #FFC0CB; /* Rose très clair */
}

*::-webkit-scrollbar-thumb:active {
    background-color: #FF69B4; /* Rose principal */
}
