body {
    margin: 0;
    height: 100vh;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial;
}

.container {
    text-align: center;
}

#mainImage {
    width: 600px;
    margin-bottom: 15px;
}

h1 {
    color: white;
    margin-bottom: 20px;
}

button {
    font-size: 22px;
    padding: 14px 32px;
    margin: 0 6px;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.yes { background: #2ecc71; }
.maybe { background: #c9a316; }
.no { background: #e74c3c; }

.disabled {
    background: gray !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.pink {
    color: #ff69b4;
}

.blue {
    color: #275eb8;
}

