/* Well Wishes section container */
.wishes-wrapper.card {
    background: linear-gradient(180deg, #fff, #fffaf6);
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(10,10,10,0.08);
}

.wishes-wrapper .wishes-title {
    font-family: 'Playfair Display', serif;
    margin: 0 0 8px;
}

.wishes-wrapper .muted {
    font-size: 14px;
    margin: 0 0 8px;
    color: #6b6b6b;
}

/* Form styling */
#well-wishes-form textarea {
    width: 100%;
    resize: none;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #efe6dd;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

#well-wishes-form .form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    gap: 8px;
}

#well-wishes-form .form-row input {
    flex-grow: 1;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #efe6dd;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #111;
}

.btn.ghost:hover {
    background-color: #f8f8f8;
}

/* Wish list styling */
.wishes-list-container {
    margin-top: 12px;
}

.wishes-list-container .wish-list {
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 180px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px dashed #efe1d6;
    border-radius: 8px;
}

.wishes-list-container .wish-list li {
    padding: 10px;
    border-bottom: 1px dashed #efe1d6;
    font-size: 14px;
    color: #444;
}

.wishes-list-container .wish-list li:last-child {
    border-bottom: none;
}

.wishes-list-container .wish-list li strong {
    color: #222;
}

.wishes-list-container .wish-list .no-wishes {
    text-align: center;
    padding: 15px;
    color: #6b6b6b;
}

/* Form messages */
.messages {
    font-size: 14px;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 8px;
}
.messages.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.messages.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

