/* === ПУТЕВОДИТЕЛЬ === */
.guide-content {
    max-width: 700px !important;
    max-height: 85vh !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.guide-body {
    display: flex;
    flex-direction: row;
    height: 65vh;
    overflow: hidden;
}

.guide-nav {
    width: 180px;
    flex-shrink: 0;
    overflow-y: auto;
    padding: 10px;
    border-right: 1px solid #eee;
    background: #fafafa;
}

.guide-nav-item {
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.guide-nav-item:hover {
    background: #f0f0f0;
    color: #333;
}

.guide-nav-item.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.guide-pages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.guide-section {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.guide-section p {
    margin-bottom: 12px;
}

.guide-section ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.guide-section li {
    margin-bottom: 6px;
}

.guide-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.step-num {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.guide-tip {
    background: #fff8e1;
    border: 1px solid #ffd54f;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: #f57f17;
    margin-top: 10px;
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 13px;
}
.guide-table th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 8px 6px;
    text-align: center;
}
.guide-table td {
    padding: 6px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.guide-table tr:nth-child(even) td {
    background: #f9f0ff;
}
.guide-section code {
    background: #f0e6ff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}

.guide-titles {
    columns: 2;
    column-gap: 20px;
}

@media (max-width: 600px) {
    .guide-body {
        flex-direction: column;
        height: 70vh;
    }
    .guide-nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 8px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .guide-nav-item {
        font-size: 11px;
        padding: 4px 10px;
        white-space: nowrap;
    }
    .guide-pages {
        padding: 12px;
    }
    .guide-titles {
        columns: 1;
    }
}

