body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #ffe6e6; /* Light pink background */
    font-family: 'Arial', sans-serif;
    overflow: hidden; /* Prevent scrollbars if button moves wildly */
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 400px;
}

h1 {
    color: #ff4d4d;
    margin-bottom: 20px;
    font-size: 2rem;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    max-height: 300px;
    object-fit: cover;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative; /* For button positioning context if needed locally */
    min-height: 60px; /* Reserve space for buttons */
}

.btn {
    padding: 10px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.yes-btn {
    background-color: #28a745;
    color: white;
}

.yes-btn:hover {
    background-color: #218838;
}

.no-btn {
    background-color: #dc3545;
    color: white;
    /* Position will change to fixed in JS */
    transition: all 0.2s ease;
}
