:root {
    --primaryWhite: #F8F8F8;
    --primaryYellow: #ffe000;
    --primaryGray: #1d1d1b;
    --secondaryGray: #666666;
    --primaryBlue: #3D76F3;
    --secondaryBlue: #F1F4FF;

}

body {
    font-family: "Montserrat", sans-serif;
    overscroll-behavior: none;

}

.bg-white {
    background-color: var(--primaryWhite);
}

.bg-primaryYellow {
    background-color: var(--primaryYellow);
}

.bg-primaryGray {
    background-color: var(--primaryGray);
}

.bg-secondaryGray {
    background-color: var(--secondaryGray);
}

.bg-primaryBlue {
    background-color: var(--primaryBlue);
}

.bg-secondaryBlue {
    background-color: var(--secondaryBlue);
}

.text-primaryWhite {
    color: var(--primaryWhite);
}

.text-primaryYellow {
    color: var(--primaryYellow);
}

.text-primaryGray {
    color: var(--primaryGray);
}

.text-secondaryGray {
    color: var(--secondaryGray);
}

.text-primaryBlue {
    color: var(--primaryBlue);
}

.text-secondaryBlue {
    color: var(--secondaryBlue);
}

p {
    /* Firefox */
    -moz-user-select: none;
    /* Chrome, Safari, Opéra depuis la version 15 */
    -webkit-user-select: none;
    /* Internet explorer depuis la version 10 et Edge */
    -ms-user-select: none;
    /* Propriété standard */
    user-select: none;
}

.custom-input {
    position: relative;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.box-shadow-blue {
    box-shadow: 0px 0px 10px 0px #7fa2ee;
}

.day-label {
    margin: 0.5rem;
    cursor: pointer;
}

.day-checkbox {
    display: none;
}

.day-checkbox:checked+.day-text {
    background-color: var(--primaryBlue);
    color: white;
}

.day-text {
    padding: 0.5rem;
    border: 2px solid #ccc;
    border-radius: 0.5rem;
    transition: background-color 0.25s ease;
}

.address-container {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; /* Nombre de lignes à afficher */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* Utiliser normal pour permettre la coupure du texte */
}

#myPostContent{
    margin-bottom: 2rem;
}

.navbar{
    z-index: 99999;
    border-radius: 0!important;
}

.disabled{
    opacity: 0.5;
    filter: grayscale(0.8);
}

.maintenance-banner {
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 2px -2px gray;
}