.elementor-8398 .elementor-element.elementor-element-6738769{--display:flex;}/* Start custom CSS for html, class: .elementor-element-49fc138 */<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

/* Le conteneur occupe 100% de la hauteur de l'écran et centre tout */
.waiting-container {
    display: flex !important;
    justify-content: center !important; /* Centrage horizontal */
    align-items: center !important;     /* Centrage vertical */
    min-height: 100vh !important;       /* 100% de la hauteur du navigateur */
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
    box-sizing: border-box;
}

.waiting-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 500px;
    width: 100%;
    margin: auto !important; /* Sécurité supplémentaire */
}

/* --- Le reste du style reste le même --- */

.loader-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.spinner {
    width: 100%;
    height: 100%;
    border: 4px solid #fffaf7;
    border-top: 4px solid #FF782C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #FF782C;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

h1 { color: #222; font-weight: 800; font-size: 28px; margin-bottom: 10px; }
.subtitle { color: #666; font-size: 16px; margin-bottom: 30px; }

.status-box {
    background: #fff8f4;
    border: 1px solid #ffe8db;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.status-badge {
    display: inline-block;
    background: #FF782C;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.time-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #91d1a1;
    font-size: 14px;
    margin-bottom: 30px;
}

.next-steps {
    text-align: left;
    margin-bottom: 35px;
}

.next-steps h3 { font-size: 18px; color: #222; margin-bottom: 15px; }
.next-steps ul { list-style: none; padding: 0; margin: 0; }
.next-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.next-steps li span {
    background: #eee;
    width: 24px;
    height: 24px;
    display: flex;
    flex-shrink: 0; /* Empêche le cercle de s'écraser */
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.back-home {
    display: inline-block;
    text-decoration: none;
    color: #FF782C;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.back-home:hover { opacity: 0.7; }
</style>/* End custom CSS */