.acs-help-page {
    max-width: 1200px;
}

.acs-help-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.acs-help-toc {
    flex: 0 0 200px;
    background: #fff;
    padding: 20px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    position: sticky;
    top: 32px;
    height: fit-content;
}

.acs-help-toc h2 {
    margin-top: 0;
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
}

.acs-help-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acs-help-toc li {
    margin-bottom: 8px;
}

.acs-help-toc a {
    text-decoration: none;
    color: #0073aa;
}

.acs-help-toc a:hover {
    color: #00a0d2;
}

.acs-help-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}

.acs-help-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.acs-help-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.acs-help-section h2 {
    color: #23282d;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-top: 0;
}

.acs-help-section h3 {
    color: #444;
    margin-top: 25px;
}

.acs-help-section table {
    margin-top: 15px;
}

.acs-help-section table th {
    text-align: left;
    background: #f5f5f5;
}

.acs-code-block {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin: 15px 0;
    overflow-x: auto;
}

.acs-code-block code,
.acs-code-block pre {
    background: transparent;
    padding: 0;
    margin: 0;
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
}

@media (max-width: 782px) {
    .acs-help-container {
        flex-direction: column;
    }

    .acs-help-toc {
        position: static;
        flex: none;
    }
}
