/* --- Conteneur centralisé --- */
.section-success {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background-color: #d4c4be;
}

.container-success {
    background: #f8f6f5;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 2;
}


/* --- Titre de confirmation --- */
.container h1 {
    font-size: 1.8rem;
    color: #6e4d46;
    margin-bottom: 15px;
}

/* --- Bouton de consultation de commande --- */
.container .btn-success {
    background-color: #bdaaa5;
    color: white;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.container .btn-success:hover {
    background-color: #a28c86;
}
