/* ==== BASE === */
body {
    margin: 0;
    background: #0e0e12;
    color: #e5e5e5;
    font-family: "Segoe UI", sans-serif;
}

/* ==== TOP BAR ==== */
#topbar {
    height: 48px;
    background: #16161c;
    border-bottom: 1px solid #2a2a33;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.logo {
    font-weight: 600;
    font-size: 18px;
    color: #c4b4ff;
}

#breadcrumbs {
    font-size: 13px;
    opacity: 0.8;
}

/* ==== LAYOUT ==== */
#container {
    display: flex;
    height: calc(100vh - 48px);
}

/* ==== SIDEBAR ==== */
#sidebar {
    width: 280px;
    background: #141419;
    border-right: 1px solid #2a2a33;
    padding: 15px;
    overflow-y: auto;
}

.section-title {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a8aa5;
}

/* folders */
.folder {
    padding: 6px 4px;
    cursor: pointer;
    border-radius: 4px;
}

.folder:hover {
    background: #1d1d25;
}

/* subfolders */
.subfolder {
    display: none;
    padding-left: 15px;
    margin-bottom: 6px;
}

.file {
    padding: 4px 4px;
    cursor: pointer;
    font-size: 14px;
    color: #d0d0e0;
}

.file:hover {
    color: #c4b4ff;
}

/* ==== MAIN CONTENT ==== */
#content {
    flex-grow: 1;
    padding: 25px;
    overflow-y: auto;
}

#content h1, #content h2 {
    color: #e8e8ff;
}

#content p {
    line-height: 1.6;
    max-width: 750px;
}
