.lite-faq-container {
    max-width: 800px;
    margin: 20px auto;
}

.lite-faq-search { 
    margin-bottom: 12px;
}

.lite-faq-search-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--wp--preset--color--border, #ccc);
    border-radius: 4px;
    background: var(--wp--preset--color--background, #fff);
    color: var(--wp--preset--color--foreground, #222);
}

.lite-faq-item {
    margin-bottom: 10px;
    border: 1px solid var(--wp--preset--color--border, #ccc);
    border-radius: 4px;
    background: var(--wp--preset--color--background, #fff);
}

.lite-faq-question {
    padding: 15px;
    background-color: var(--wp--preset--color--background, #f5f5f5);
    color: var(--wp--preset--color--foreground, #222);
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: background 0.2s, color 0.2s;
}

.lite-faq-question.active,
.lite-faq-question:hover {
    background-color: var(--wp--preset--color--primary, #e0e0e0);
    color: var(--wp--preset--color--background, #fff);
}

.lite-faq-question::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.lite-faq-question.active::after {
    content: '-';
}

.lite-faq-answer {
    display: none;
    padding: 15px;
    border-top: 1px solid var(--wp--preset--color--border, #ccc);
    background: var(--wp--preset--color--background, #fff);
    color: var(--wp--preset--color--foreground, #222);
    transition: background 0.2s, color 0.2s;
}

.lite-faq-no-results {
    padding: 12px;
    text-align: center;
    color: var(--wp--preset--color--foreground, #666);
} 