/* General Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    z-index: 9999;
    transition: top 0.3s;
    padding: 12px 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center; /* Ensures navbar is centered */
}

/* Navbar Menu (for Desktop) */
.navbar ul {
    display: flex;
    justify-content: center; /* Center navbar items horizontally */
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar ul li {
    margin-right: 20px; /* Space between menu items */
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    padding: 2px 5px;
    display: inline-block;
    border-radius: 4px;
}

.navbar ul li a:hover {
    background-color: #444;
}

/* Hide the hamburger button by default */
.menu-btn {
    display: none; /* Hide by default */
    font-size: 10px;
    color: white;
    background-color: transparent;
    border: none;
    padding: 2px;
    cursor: pointer;
}