/* Help Documentation Styles - FluentUI Theme Compatible */

/* Accordion Wrapper Styles */
.helpdoc-accordion-wrapper {
    margin-top: 16px;
    padding: 0;
}

.helpdoc-accordion-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-fill-rest, #0078d4);
    font-weight: 600;
    font-size: 13px;
}

.helpdoc-accordion-header i {
    font-size: 14px;
}

.helpdoc-accordion-content {
    padding: 12px 0;
}

/* Section Styles */
.helpdoc-section {
    margin-bottom: 16px;
}

.helpdoc-section:last-of-type {
    margin-bottom: 0;
}

.helpdoc-section h4 {
    color: var(--neutral-foreground-rest, #242424);
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.helpdoc-section h4 i {
    color: var(--accent-fill-rest, #0078d4);
    font-size: 14px;
}

.helpdoc-section p {
    color: var(--neutral-foreground-rest, #616161);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    padding-left: 22px;
}

.helpdoc-section ul {
    list-style: none;
    padding-left: 22px;
    margin: 0;
}

.helpdoc-section ul li {
    color: var(--neutral-foreground-rest, #616161);
    font-size: 12px;
    line-height: 1.8;
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
}

.helpdoc-section ul li:before {
    content: "•";
    color: var(--accent-fill-rest, #0078d4);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.helpdoc-section ul li:last-child {
    margin-bottom: 0;
}

.helpdoc-section ul li strong {
    color: var(--neutral-foreground-rest, #242424);
    font-weight: 600;
}

/* Tips Box Styles */
.helpdoc-tips {
    background: var(--neutral-layer-3, #f5f5f5);
    border-left: 3px solid var(--accent-fill-rest, #0078d4);
    padding: 10px 14px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
}

.helpdoc-tips i {
    color: var(--accent-fill-rest, #0078d4);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.helpdoc-tips span {
    color: var(--neutral-foreground-rest, #616161);
    font-size: 12px;
    line-height: 1.6;
}

.helpdoc-tips strong {
    color: var(--neutral-foreground-rest, #242424);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .helpdoc-accordion-header {
        font-size: 12px;
    }

    .helpdoc-section h4 {
        font-size: 12px;
    }

    .helpdoc-section p,
    .helpdoc-section ul li,
    .helpdoc-tips span {
        font-size: 11px;
    }
}
