body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #ffeaa7;
    overflow: hidden; /* Empêche le scroll si le bouton fuit trop loin */
}

.container {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 10; /* Pour rester au dessus du bouton qui bouge */
}

h1 {
    color: #d63031;
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

#btn-oui {
    background-color: #55efc4;
    color: #2d3436;
}

#btn-oui:hover {
    transform: scale(1.1);
    background-color: #00b894;
}

#btn-non {
    background-color: #ff7675;
    color: white;
    transition: all 0.1s ease; /* Pour un mouvement plus fluide */
}