body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffeef2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.btn-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
    width: 150px;
    height: 50px;
}

button {
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#yes-btn {
    background-color: #ff4d6d;
    color: white;
    z-index: 10;
    position: relative;
}

#no-btn {
    background-color: #adb5bd;
    color: white;
    position: fixed;
    z-index: 30;
    transition: all 0.2s ease;
    left: calc(50% + 60px);
    /* top: 50%;
    transform: translate(-50%, -50%); */
}

.hidden {
    display: none !important;
}

#message-section {
    text-align: center;
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#no-counter {
    color: #ff4d6d;
    font-weight: bold;
    height: 30px;
    margin-bottom: 10px;
    transition: transform 0.1s ease;
    position: relative;
    z-index: 25;
    transform: translateY(0);
}

.message {
    margin: 0 70px;
}

.reasons {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    text-align: left;
    margin-top: 20px;
}

.reasons p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #d63384;
}

.cat-image{
    width: 320px;
    height: auto;
    display: flex;
    justify-content: center;
    margin-left: 30px;
}