/* css/guide.css - User Guide & Documentation Styles */

.sa-accordion-item {
    border: 1px solid #334155;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #0f172a;
}

.sa-accordion-header {
    width: 100%;
    padding: 16px 20px;
    background: #1e293b;
    color: #e2e8f0;
    text-align: left;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sa-accordion-header:hover {
    background: #334155;
}

.sa-accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.sa-accordion-content--open {
    padding: 20px;
    max-height: 1000px;
    border-top: 1px solid #334155;
}

.sa-pro-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    background: #f59e0b;
    color: #000;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
}

.sa-guide-footer {
    margin-top: 40px;
    border-top: 1px solid #334155;
    padding-top: 20px;
    color: #64748b;
    font-size: 0.8rem;
}

.sa-guide-link {
    color: #38bdf8;
    text-decoration: none;
    border-bottom: 1px dashed rgba(56, 189, 248, 0.5);
}

.sa-guide-link:hover {
    color: #60a5fa;
    border-bottom-style: solid;
}