/* Header container */
.header-container {
    display: flex;
    justify-content: space-between; /* Push nav bar to the right */
    align-items: center;
    background-color: #55b0ff;      /* Background color */
    flex-wrap: wrap;                /* Allow wrapping on smaller screens */
    height: 100px;
    width: 100%;
}

/* Header title */
.header-title {
    font-size: clamp(18px, 4vw, 30px);
    color: #fff;
    margin-left:clamp(14px, 4vw, 20px);
    font-weight: normal;
    font-family: 'Arial', sans-serif;
}

/* Header title */
.header-link {
    font-size: clamp(14px, 4vw, 30px);
    color: #fff;
    margin-left: clamp(30px, 15vw, 60px);
    font-weight: normal;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
}

.logo-style {
    width: auto;
    height: clamp(40px, 10vw, 80px);;
    margin-left: clamp(10px, 5vw, 30px);
}

/* Footer container */
.footer-container {
    display: flex;
    justify-content: center; /* Push nav bar to the right */
    align-items: center;
    background-color: #55b0ff;      /* Background color */
    flex-wrap: wrap;                /* Allow wrapping on smaller screens */
    height: 30px;
}

/* Header Navigation bar */
.header-nav-bar {
    display: flex;
    margin-right: clamp(5px, 3vw, 60px);
    gap: clamp(10px, 6vw, 50px);                      /* Space between links */
}

/* Navigation links */
.header-nav-link {
    font-size: clamp(14px, 4vw, 18px);
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 75px;
}

.header-nav-link:hover {
    color: #0030b3;                 /* Darker color on hover */
}

/* Navigation links */
.header-nav-link-selected {
    font-size: clamp(14px, 4vw, 18px);
    color: #0030b3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 75px;
}

/* Navigation links */
.logoff-button {
    font-size: clamp(14px, 4vw, 18px);
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 75px;
    background-color: #ffffff00;
    border: 0px;
    cursor: pointer;
}

.logoff-button:hover {
    color: #0030b3;                 /* Darker color on hover */
}


/* Footer Navigation bar */
.footer-nav-bar {
    display: flex;
    gap: clamp(10px, 10vw, 50px);                      /* Space between links */
}

/* Footer Navigation links */
.footer-nav-link {
    font-size: clamp(14px, 4vw, 16px);
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.footer-nav-link:hover {
    color: #0030b3;                 /* Darker color on hover */
}

/* Footer Navigation links */
.footer-nav-link-selected {
    font-size: clamp(14px, 4vw, 16px);
    color: #0030b3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}



/* Responsive Adjustments */
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;     /* Stack items vertically on small screens */
        align-items: flex-start;
    }
}