body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #ffe6e6;
    font-family: Arial, sans-serif;
}

.card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

@media screen and (max-width: 768px) {
    .card {
        margin: 1rem;
    }
}

h1 {
    color: #ff4d4d;
    margin-bottom: 2rem;
    margin-top: 0;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    min-height: 45px;
}

button {
    padding: 10px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#yesBtn {
    background-color: #ff4d4d;
    color: white;
}

#yesBtn:hover {
    background-color: #ff3333;
    transform: scale(1.1);
}

#noBtn {
    background-color: #cccccc;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
    width: 85px;
}

@media (hover: hover) and (pointer: fine) {
  #noBtn:hover {
    position: absolute;
    transform: translate(var(--x), var(--y));
  }
}

#result img {
    max-width: 300px;
    margin-top: 0;
    display: block;
}

.date-text {
    margin-top: 1rem;
    color: #ff4d4d;
    font-size: 1.2rem;
    font-weight: bold;
}

.calendar-btn {
    margin-top: 0;
    background-color: #ff4d4d;
    color: white;
}

.calendar-btn:hover {
    background-color: #ff3333;
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    #result img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
} 