/* Wrapper */
#faq-wrapper {
    margin-bottom: 15px;
}

/* Each FAQ row */
.faq-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

/* Question input */
.faq-item input[type="text"] {
    width: 97%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
}

/* Answer textarea */
.faq-item textarea {
    width: 97%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    min-height: 60px;
    resize: vertical;
}

/* Remove button */
.faq-item .remove-faq {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.faq-item .remove-faq:hover {
    background: #c82333;
}

/* Add button */
#add-faq {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

#add-faq:hover {
    background: #0069d9;
}




.faq-item {
    flex-direction: column;
}