body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #ffe4e1 0%, #ffc0cb 100%);
    font-family: 'Poppins', sans-serif; /* Clean font for buttons */
    overflow: hidden;
}

#container {
    text-align: center;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    max-width: 400px;
    width: 90%; /* Responsive for mobile */
}

.btn-group {
    margin-top: 20px;
    height: 100px;
    /* We don't need position: relative here anymore for the No button */
}

button {
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    /* UPDATE: Transition all properties to make movement smooth */
    transition: all 0.4s ease; 
}

#yesBtn {
    background-color: #ff4d6d;
    color: white;
    /* Add a high z-index so the No button doesn't cover it */
    z-index: 10; 
    position: relative;
}

#noBtn {
    background-color: #6c757d;
    color: white;
    /* UPDATE: Fixed allows it to move relative to the whole screen, not just the div */
    position: fixed; 
}

/* Update this section in style.css */
#image {
    width: 200px;          /* Forces a specific width */
    height: auto;          /* Keeps the photo from looking squashed */
    margin-bottom: 20px;   /* Adds space between image and text */
    border-radius: 10px;   /* Rounds the corners */
    display: block;        /* Helps with centering */
    margin-left: auto;     /* Centering trick */
    margin-right: auto;    /* Centering trick */
}

/* Overlay Styles */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffe4e1; /* Same pink background */
    z-index: 9999; /* Sits on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease; /* Fades out smoothly */
}

.overlay-content {
    text-align: center;
}

#startBtn {
    background-color: #ff4d6d;
    color: white;
    padding: 15px 40px;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Pacifico', cursive;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}