/* RSVP 에디터 스타일 */
.rsvp_edit_wrap {
    display: none;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
}

.rsvp_title_edit_wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rsvp_editor_wrap {
    display: flex;
    flex-direction: column;
}

.ql-toolbar{
    margin-top: 4px;
}

.rsvp_title_label, .rsvp_editor_label{
    font-family: 'JalnanGothic';
    color: var(--ColorTextPrimary);
    font-size: var(--tem-text-sectionSubTitle);
    font-weight: 500;
    line-height: 28px;
}

.rsvp_input {
    font-family: 'pretendard', sans-serif;
    width: 100%;
    border: 1px solid var(--ColorBorder10);
    padding: 15px;
    appearance: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--BorderRadius-Md);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#rsvp_quill_editor {
    height: 150px;
    background-color: white;
}

.ql-toolbar.ql-snow {
    border: 1px solid #ddd;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.ql-container.ql-snow {
    border: 1px solid #ddd;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: none;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    
    #rsvp_quill_editor {
        height: 120px;
    }
} 