/* ============================
   HEADER CONTAINER
   ============================ */
header.nav-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: linear-gradient(to bottom right, rgba(16,78,35,0.85), rgba(16,78,35,0.75));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* ============================
   INNER WRAPPER
   ============================ */
.nav-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    width: 100%;
}

/* ============================
   TITLE
   ============================ */
.nav-header-title {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
    margin: 0;
}

.nav-header-title a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

/* ============================
   RIGHT-SIDE ICON CLUSTER
   ============================ */
.nav-header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* increased spacing for thick fingers */
    flex-shrink: 0;
}

/* ============================
   NOTIFICATION ICON + BADGE
   ============================ */
.nav-notification {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.nav-notification i {
    font-size: 1.35rem;
}

.nav-notification-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #dc2626;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================
   BURGER MENU BUTTON
   ============================ */
#burgerBtn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s ease, transform 0.2s ease;
}

#burgerBtn:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

#burgerBtn svg {
    width: 24px;
    height: 24px;
}
