.faq-header {
    display: flex;
    gap: 10px;
}

.faq-question-input {
    flex: 1;
}

.faq-remove {
    min-width: 40px;
    font-weight: bold;
    background: #ffa196 !important;
}

.faq-remove:hover {
    background: #ff7a5c !important;
}

.faq-answer-input {
    width: 100%;
    min-height: 120px;
}

.faq-accordion {
    width: 100%;
}

.faq-row {
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    color: #222;
    padding: 18px 24px;
    cursor: pointer;
    transition: all .3s ease;
}

.faq-question:hover {
    background: #ececec;
}

.faq-title {
    font-size: 16px;
    font-weight: 600;
}

.faq-icon {
    font-size: 28px;
    line-height: 1;
    transition: all .3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-row.active .faq-question {
    background: #7a7a7a;
    color: #fff;
}

.faq-icon::before {
    content: "+";
}

.faq-row.active .faq-icon::before {
    content: "−";
}

.faq-icon {
    font-size: 24px;
}

.faq-answer {
    background: #f5f5f5;
    color: #222;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height .4s ease, opacity .3s ease, padding .3s ease;
}

.faq-row.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 20px 24px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-question-input {
    flex: 1;
    width: 100%;
}

.faq-answer-input {
    width: 100%;
    min-height: 120px;
    margin-top: 10px;
}

.faq-remove {
    flex-shrink: 0;
}

.faq-tab-content {
    display: none;
}

.faq-tab-content.active {
    display: block;
}

.faq-tabs {
    margin-bottom: 20px;
}