/* ELEMENTS PERSO */
/* Masquer elements */

.footer-partner-button {
	display: none !important;
}

/* Style pour le conteneur de flou */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.1);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.blur-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-error {
    color: red;
    font-size: 14px;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.suspension-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 90%;
    box-sizing: border-box;
    border-radius: 12px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.suspension-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.suspension-wrapper .content {
    width: 100%;
    text-align: center;
}

.suspension-wrapper .logo {
    max-width: 130px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.suspension-wrapper h1 {
    font-size: 26px;
    color: #222;
    margin-bottom: 12px;
}

.suspension-wrapper h4 {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
}

.suspension-wrapper p {
    font-size: 15px;
    color: #777;
    margin-bottom: 15px;
}

.suspension-wrapper .contact-info {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    width: 100%;
    text-align: center;
}

.suspension-wrapper .contact-info p {
    font-size: 16px;
    color: #000;
}

/* Styles pour la barre d'administration */
.suspension-mode-notice .suspension-notice {
    display: inline-block;
    color: #fff;
    background-color: #dc3232;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}

/* Version Mobile */
@media (max-width: 768px) {
    .suspension-wrapper {
        max-width: 90%;
        padding: 20px;
    }

    .suspension-wrapper h1 {
        font-size: 22px;
    }

    .suspension-wrapper h4 {
        font-size: 16px;
    }

    .suspension-wrapper p, 
    .suspension-wrapper .contact-info p {
        font-size: 13px;
    }
}
