/* HEADER - Toolbar */
header {
    background-color: #026799; /* Darker Blue */
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 60px; /* Adjust height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* NAV CONTAINER */
.nav-container {
    display: flex;
    align-items: center;
}

/* LOGO */
.logo img {
    width: 40px;
    height: auto;
    cursor: pointer;
    margin-right: 15px;
}

/* NAVIGATION */
nav {
    display: flex;
    gap: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

nav a:hover {
    color: #eaf6f9;
}

/* HEADER TITLE - CENTERED */
.header-title {
    font-size: 18px;
    margin: 0;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* MAIN CONTENT STYLING */
main {
    padding-top: 80px; /* Prevent overlap with the fixed header */
}

/* FOOTER */
footer {
    text-align: center;
    background-color: #026799;
    color: white;
    padding: 10px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}
