.popup-fermetures-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.popup-fermetures-modal {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-fermetures-logo {
    display: block;
    max-width: 250px;
    max-height: 180px;
    width: auto;
    height: auto;
    margin: 0 auto 18px;
    filter: invert(63%) sepia(64%) saturate(279%) hue-rotate(3deg) brightness(105%) contrast(74%);
}

.popup-fermetures-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.popup-fermetures-message {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-align: center;
}

.popup-fermetures-close-btn {
    background-color: #CBAE70;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.popup-fermetures-close-btn:hover {
    background-color: #C0AC52;
}

.popup-fermetures-close-btn:active {
    background-color: #B39E41;
}

/* Responsive */
@media (max-width: 480px) {
    .popup-fermetures-modal {
        padding: 20px;
    }

    .popup-fermetures-title {
        font-size: 20px;
    }

    .popup-fermetures-message {
        font-size: 14px;
        text-align: center;
    }

    .popup-fermetures-close-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}


.pf-add-btn {
    display: flex;
}