/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body.app-body {
    background: #0e0e0e;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
}

/* NAVBAR */
.topnav {
    width: 100%;
    height: 60px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-logo {
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.nav-link:hover {
    color: #fff;
}

/* MOBILE NAV TOGGLE */
.nav-mobile-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #151515;
    padding: 12px;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
    padding: 12px 8px;
    color: #eee;
    text-decoration: none;
    border-bottom: 1px solid #222;
}

.mobile-menu a:hover {
    background: #222;
}

/* SIDEBAR */
.sidebar {
    width: 70px;
    background: #101010;
    height: 100vh;
    position: fixed;
    top: 60px;
    left: 0;
    padding-top: 20px;
    border-right: 1px solid #222;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.side-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    text-align: center;
}

.side-link:hover {
    background: #222;
    color: #fff;
}

/* CONTENT */
.content-wrapper {
    margin-left: 70px;
    padding: 20px;
}

/* FOOTER */
.footer {
    background: #111;
    border-top: 1px solid #222;
    margin-top: 30px;
}

.footer-inner {
    padding: 20px;
    text-align: center;
    color: #aaa;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .content-wrapper {
        margin-left: 0 !important;
    }
    .nav-right {
        display: none;
    }
    .nav-mobile-toggle {
        display: block;
    }
}
