/* FAQ Admin Styles - Modern & Beautiful */
.star-faq-metabox {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.star-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.star-faq-header h3 {
    margin: 0;
    font-size: 18px;
    color: #1e1e1e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-faq-header h3::before {
    content: "❓";
    font-size: 24px;
}

.star-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.star-faq-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.star-faq-item:hover {
    border-color: #0073aa;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.1);
}

.star-faq-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.star-faq-item-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.star-faq-remove-btn {
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.star-faq-remove-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.star-faq-remove-btn::before {
    content: "🗑️";
    font-size: 14px;
}

.star-faq-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.star-faq-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.star-faq-field label {
    font-weight: 600;
    color: #495057;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.star-faq-field label::before {
    content: "📝";
    font-size: 16px;
}

.star-faq-field textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 80px;
}

.star-faq-field textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.star-faq-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    gap: 10px;
}

.star-faq-add-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.star-faq-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.star-faq-add-btn::before {
    content: "➕";
    font-size: 18px;
}

.star-faq-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.star-faq-empty-state-icon {
    font-size: 64px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.star-faq-empty-state h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #495057;
}

.star-faq-empty-state p {
    margin: 0;
    font-size: 14px;
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.star-faq-item {
    animation: slideIn 0.3s ease;
}

/* Responsive */
@media (max-width: 782px) {
    .star-faq-item-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .star-faq-actions {
        flex-direction: column;
    }
    
    .star-faq-add-btn {
        width: 100%;
        justify-content: center;
    }
}

