body {
    font-family: 'Pacifico', cursive;
    background-color: #ffe4e1;
    color: #ff1493;
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    padding: 20px;
}

.left {
    width: 600px;
    position: relative;
}

.right {
    width: 300px;
    text-align: left;
    max-height: 700px;
    overflow-y: auto;
    background-color: #fff0f5;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
}

form {
    margin-bottom: 20px;
}

input[type=number] {
    width: 50px;
    padding: 3px;
    border-radius: 5px;
    border: 1px solid #ff69b4;
    margin-left: 10px;
}

.btn {
    cursor: pointer;
    font-family: 'Pacifico', cursive;
    font-size: 18px;
    padding: 8px 20px;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin: 5px;
}

.yes-btn {
    background-color: #ff69b4;
    color: white;
}

.yes-btn:hover {
    background-color: #ff1493;
}

.no-btn {
    background-color: #ffc0cb;
    color: white;
    position: relative;
}

.no-btn:hover {
    background-color: #ffb6c1;
}

.bouquet {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto 30px auto;
}

.bouquet-flower {
    transition: transform 0.5s ease;
}

.petal {
    width: 15px;
    height: 15px;
    background-color: #ffb6c1;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
}

ul {
    list-style-type: none;
    padding-left: 10px;
}

li {
    margin-bottom: 5px;
}

h1,h2 { margin-bottom:15px; }

.right::-webkit-scrollbar { width:8px; }
.right::-webkit-scrollbar-thumb { background:#ff69b4; border-radius:4px; }
.right::-webkit-scrollbar-track { background:#fff0f5; }












