/* ================= RESET ================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f4f6f9;
}


/* ================= TOP BAR ================= */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #111827;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 1000;
}

.custom-navbar {
    background-color: #191947; /* Replace with your color */
}


.brand {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ================= SIDEBAR ================= */
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 220px;
    height: calc(100vh - 60px);
    background-color: #1f2937;
    padding-top: 20px;
}

/* ================= SIDEBAR LINKS ================= */
.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
}

.menu-item i {
    font-size: 1.2rem;
}

.menu-item:hover {
    background-color: #374151;
    color: #ffffff;
}

/* ================= MAIN CONTENT ================= */
.main-content {
    margin-top: 60px;
    margin-left: 220px;
    padding: 24px;
    min-height: calc(100vh - 60px);
    background-color: #f4f6f9;
}
