/* --- FAQ Archive Page --- */
.ocenexvr-faq-archive .faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.ocenexvr-faq-archive h1 {
    margin-bottom: 0;
}
.faq-filters {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 5px;
}
.faq-filters form {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.faq-topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.faq-topic-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
}
.faq-topic-item:hover {
    border-color: #007bff;
}
.topic-main {
    flex-grow: 1;
}
.topic-main h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}
.topic-main h4 a {
    text-decoration: none;
    color: #333;
}
.topic-meta {
    font-size: 13px;
    color: #666;
}
.topic-stats {
    text-align: center;
    padding-left: 15px;
    min-width: 80px;
}
.comment-count {
    font-size: 24px;
    font-weight: 600;
    color: #007bff;
    display: block;
    line-height: 1;
}
.comment-count small {
    font-size: 12px;
    font-weight: normal;
    color: #666;
    display: block;
}

/* --- Single FAQ Topic Page --- */
.single-faq_topic .entry-header {
    border-bottom: 2px solid #007bff;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
.single-faq_topic .entry-meta {
    font-size: 14px;
    color: #555;
}
.single-faq_topic .entry-content {
    font-size: 16px;
    line-height: 1.7;
}
/* Style the comments section */
#comments {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
.comments-title {
    font-size: 22px;
}
.comment-list {
    list-style: none;
    padding: 0;
}
.comment-list .comment {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}
.comment-list .children {
    list-style: none;
    padding-left: 20px; /* Indent replies */
    margin-top: 15px;
}
.comment-meta {
    margin-bottom: 10px;
}
.comment-author .avatar {
    border-radius: 50%;
    margin-right: 10px;
}
.fn {
    font-weight: bold;
}
.comment-metadata a {
    font-size: 12px;
    color: #777;
    text-decoration: none;
}
.reply a {
    font-size: 13px;
    font-weight: bold;
}
.comment-form-comment label {
    display: block;
    margin-bottom: 5px;
}
#comment {
    width: 100%;
    padding: 10px;
}

/* --- Ask Question Form --- */
.ocenexvr-form-wrap {
    max-width: 700px;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border: 1px solid #ddd;
}
.ocenexvr-form-wrap .required {
    color: #dc3545;
}