.faq-wrapper {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin: 10px 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 12px 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.faq-question-wrapper,
.faq-answer-wrapper {
    margin-bottom: 10px;
}

.faq-question-wrapper label,
.faq-answer-wrapper label {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 14px;
    color: #333;
}

.faq-question-wrapper input,
.faq-answer-wrapper textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    background: #fafafa;
    transition: 0.2s;
    font-family: inherit;
}

.faq-question-wrapper input:focus,
.faq-answer-wrapper textarea:focus {
    border-color: #4a90e2;
    background: white;
    outline: none;
}

.faq-answer-wrapper textarea {
    min-height: 80px;
    resize: vertical;
}

.faq-delete-btn {
    background: #fee;
    color: #b33;
    border: 1px solid #fcc;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s;
}

.faq-delete-btn:hover {
    background: #fdd;
    border-color: #e99;
}

.faq-add-btn {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 10px;
}

.faq-add-btn:hover {
    background: #357abd;
}