/* =========================
   SIDEBAR STYLING
   ========================= */

.sidebar {
    width: 260px;
    height: 100vh;
    background: #0f172a;
    color: white;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* LOGO AREA */
.sidebar .logo {
    text-align: center;
    margin-bottom: 30px;
}

.sidebar .logo img {
    width: 140px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

/* MENU LINKS */
.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar nav a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    transition: 0.2s;
}

.sidebar nav a:hover {
    background: #1e293b;
    color: white;
}

.sidebar nav a.active {
    background: #ff6a00;
    color: white;
}
