/* Style for the navigation header */
.navbar {
    position: fixed;           /* Fix the navbar to the top */
    top: 0;                    /* Align it to the top of the viewport */
    left: 0;                   /* Align it to the left of the viewport */
    width: 100%;               /* Ensure it spans the full width */
    z-index: 1000;             /* Place it above other elements */    
    box-sizing: border-box;    /* Include padding in width/height */
    background-color: #374955; /* Blue background */
    color: white;              /* White text */
    text-align: center;          /* Align text to the left */
    padding: 15px 20px 15px 10px;        /* Vertical and horizontal padding */
    font-size: 24px;           /* Font size */
    font-weight: bold;         /* Bold text */
    display: flex;             /* Use flexbox for layout */
    justify-content: space-between; /* Space between navbar elements */
    align-items: center;       /* Vertically center the items */
}

/* Style for the text part of the navbar */
.navbar-text {
    display: inline-block;     /* Ensure the text is aligned properly */
    font-family: 'vocalblack';
}

/* Container for the login and register links */
.navbar-links {
    display: flex;             /* Arrange the links in a row */
    gap: 25px;                 /* Space between the links */
}

/* Style for the links */
.navbar-link {
    color: white;              /* White text color */
    text-decoration: none;     /* Remove underline from links */
    font-size: 14px;
    font-weight: bold;       /* Normal weight for the links */
    padding: 5px 0px;         /* Padding around the links */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
    min-width: 55px;
}

/* Hover effect for the links */
.navbar-link:hover {
    background-color: #1a5f7a; /* Darker blue background on hover */
    border-radius: 5px;         /* Rounded corners on hover */
    text-decoration: none;
    color: white;
}
