/* Table of Contents Frontend Styles */
.geleceksosyalizm-toc-container {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: table;
    /* Shrink to fit, but allow expansion */
    min-width: 300px;
    max-width: 100%;
}

.gs-toc-header {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.gs-toc-toggle {
    cursor: pointer;
    font-size: 0.9em;
    color: #666;
    user-select: none;
}

.gs-toc-toggle:hover {
    color: #333;
}

.gs-toc-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gs-toc-item {
    margin-bottom: 8px;
    line-height: 1.4;
}

.gs-toc-item a {
    text-decoration: none;
    color: #444;
    transition: color 0.2s;
    display: inline-block;
}

.gs-toc-item a:hover {
    color: #d32f2f;
    /* Theme accent color approximation */
    text-decoration: none;
}

/* Indentation Levels */
.gs-toc-level-2 {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 500;
}

.gs-toc-level-3 {
    font-size: 0.95rem;
    margin-left: 0;
    padding-left: 20px;
    position: relative;
}

.gs-toc-level-4 {
    font-size: 0.9rem;
    margin-left: 0;
    padding-left: 40px;
}

.gs-toc-level-5 {
    font-size: 0.9rem;
    margin-left: 0;
    padding-left: 60px;
}

.gs-toc-level-6 {
    font-size: 0.9rem;
    margin-left: 0;
    padding-left: 80px;
}

/* Bullet points for levels 3+ */
.gs-toc-level-3::before,
.gs-toc-level-4::before,
.gs-toc-level-5::before,
.gs-toc-level-6::before {
    content: "•";
    color: #ccc;
    position: absolute;
    left: 5px;
    /* Adjust based on padding */
}

.gs-toc-level-3::before {
    left: 0;
}

.gs-toc-level-4::before {
    left: 20px;
}

.gs-toc-level-5::before {
    left: 40px;
}

.gs-toc-level-6::before {
    left: 60px;
}


@media (max-width: 600px) {
    .geleceksosyalizm-toc-container {
        display: block;
        width: 100%;
        padding: 15px;
    }
}