﻿/* Overlay flouté */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
}

/* Conteneur principal de la popup */
.popup {
    background: white;
    border-radius: 7px;
    width: 400px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

/* Header avec image + titre */
.popup-header {
    display: flex;
    align-items: center;
}

.warning-img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* Contenu texte */
.popup-text {
    font-size: 1rem;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
    line-height: 20px;
}

.popup-bouton {
    margin-top: auto;
    background-color: var(--orange-main);
    /* height: 53px; */
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    align-self: flex-end;
}

.popup-bouton-texte {
    color: white;
    height: 100%;
    width: 100%;
    font-size: 15px;
    font-size: var(--btn-fs);
    line-height: 20px;
    line-height: var(--btn-lh);
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
