/* Frontend Styles for Smart FAQs for GEO */

.smart-faqs-container {
    margin: 20px 0;
    font-family: inherit;
}

.smart-faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.smart-faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.smart-faq-answer {
    display: none;
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
}

.smart-faq-item.active .smart-faq-answer {
    display: block;
}

/* AI Knowledge Block Styles */
.smart-geo-block {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #7f54b3; /* AI purple */
    margin-bottom: 20px;
}

.smart-geo-title {
    color: #7f54b3;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Knowledge Blocks Styles */
.smart-kb-block {
    padding: 15px;
    border-radius: 6px;
    margin: 10px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-left: 4px solid #ccc;
}

.smart-kb-block .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.smart-kb-tip {
    background-color: #f0f9ff;
    border-left-color: #3b82f6;
    color: #1e40af;
}

.smart-kb-warning {
    background-color: #fffbeb;
    border-left-color: #f59e0b;
    color: #92400e;
}

.smart-kb-guide {
    background-color: #f0fdf4;
    border-left-color: #22c55e;
    color: #166534;
}

.smart-kb-content {
    flex-grow: 1;
    font-size: 0.95em;
}
