/* Layout Structure */
.main-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
}

@media (min-width: 992px) {
    .main-container {
        /* padding-left: 3rem;
        padding-right: 3rem; */
    }
}

.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 90;

    overflow-y: auto;
    overflow-x: hidden;
}

.sticky-sidebar.left {
    padding-right: 4px;

    max-height: calc(100vh - 140px);
}

/* Global Custom Thin Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Firefox scrollbar support */
* {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.border-right1px {
    border-right: 1px solid var(--border-color);
}

.border-left1px {
    border-left: 1px solid var(--border-color);
}

/* Center Content Feed */
.center-feed {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

/* Content Sections */
.content-section {
    padding-top: 10px;
}

.section-title {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #000;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 700px;
    line-height: 1.6;
}