body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0c1b8; /* Soft pink background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#yesButton {
    background-color: #4CAF50; /* Green */
}

#noButton {
    background-color: #f44336; /* Red */
}
