#faq-container {
    padding: 10px 0;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 4px;
}

.faq-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.faq-item-content p {
    margin: 10px 0;
}

.faq-item-content label {
    font-weight: bold;
    color: #333;
}

.faq-editor-toolbar {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
    padding: 8px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.editor-btn {
    padding: 5px 12px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.editor-btn:hover {
    background: #e0e0e0;
    border-color: #999;
}

.editor-btn strong {
    font-weight: bold;
}

.faq-answer-textarea {
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
    line-height: 1.6;
}

#add-faq-item {
    margin-top: 10px;
}

.remove-faq-item {
    background: #dc3232;
    color: white;
    border-color: #dc3232;
}

.remove-faq-item:hover {
    background: #c02020;
    border-color: #c02020;
    color: white;
}