    body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e5f1fb;
}

header {
    background-color: #0077cc;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
}

/* General navigation styling */
nav {
    background-color: #005080;
    padding: 10px;
    position: relative;
}

nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

nav .menu li {
    position: relative;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 10px;
    display: block;
}

nav a:hover {
    color: #e0e0e0;
}

/* Ensure submenus are hidden by default */
.dropdown-content {
    display: none !important; /* Force the submenu to be hidden */
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #006699;
    padding: 10px 0;
    list-style: none;
    border-radius: 4px;
    z-index: 10;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Show the submenu when the parent has 'show' class */
.dropdown.show .dropdown-content {
    display: block !important; /* Force visibility only when toggled */
}

.dropdown-content li {
    text-align: left;
}

.dropdown-content li a {
    color: #ffffff;
    font-size: 16px;
    padding: 10px 20px;
}

.dropdown-content li a:hover {
    background-color: #004d66;
    color: #ffffff;
    border-radius: 4px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hamburger menu styling */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    text-align: center;
    background-color: #005080;
    border: none;
}

/* Responsive styling for bigger screens */
@media screen and (min-width: 769px) {
    nav .menu {
        display: flex; /* Only apply on larger screens */
    }

    .dropdown-content {
        display: none !important; /* Hidden by default */
    }

    .dropdown:hover .dropdown-content {
        display: block !important; /* Show on hover for desktop */
    }
}

/* Responsive styling for small screens */
@media screen and (max-width: 768px) {
    .menu {
        display: none; /* Hide menu by default */
        flex-direction: column;
        align-items: flex-start;
        background-color: #005080;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
        padding: 10px 0;
    }

    .menu.show {
        display: flex; /* Show menu when toggled */
    }

    .menu li {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-content {
        display: none; /* Hide dropdown content on mobile */
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown .dropdown-content {
        display: flex;
        flex-direction: column;
    }

    .dropdown:hover .dropdown-content {
        display: none; /* Disable hover on mobile */
    }
}


/* End of NAV*/

.content {
    width: 80%;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #0077cc;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}


/* Time start*/

#timeDisplay {
    font-size: 1.5rem;
    margin: 20px;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
}
th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}
th {
    background-color: #f4f4f4;
}

/* Time end */

/* Time2 start */
.form-container {
    margin: 20px auto;
    max-width: 500px;
    text-align: center;
}
input, select, button {
    margin: 5px;
    padding: 10px;
    font-size: 1rem;
}

/* Time2 end*/

/*body {
        background-color: #e6f4ea;
}

header, footer {
    background-color: #4caf50;
}

nav {
    background-color: #388e3c;
}*/
