/* -------- NAVBAR BASE -------- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
}

/* Left side big title */
.nav-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

/* Links container */
.nav-links {
    display: flex;
    gap: 20px;
}

/* -------- NAV LINK STYLE -------- */
.nav-link {
    padding: 8px 14px;
    font-size: 18px;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* hover effect for inactive links */
.nav-link:hover {
    background-color: #f0f0f0;
}

/* -------- ACTIVE PAGE -------- */
.nav-link.active {
    border: 2px solid #1e90ff;   /* blue outline */
    border-radius: 8px;
    font-weight: 600;
    color: #1e90ff;
    background-color: #eaf4ff;
}

/* -------- PAGE CONTENT WRAPPER -------- */
.page-wrapper {
    padding: 30px;
}
