/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    border-bottom: 0px solid #ccc;
    padding: 0px 0;
    
}

select, select option {
    font-family: sans-serif;
    font-size: 16px; /* Adjust the font size as needed */
}


body {
    margin-top: 100px; /* Adjust to match the height of your header */
}


/* Style for main navigation bar */
.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Center the menu */
    background-color: #4169E1; /* Royal blue background */
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    padding: 15px 20px;
    color: #fff; /* White text color */
    text-decoration: none;
}

.main-menu > li > a:hover {
    background-color: #27408B; /* Darker royal blue on hover */
}

/* Style for dropdown menu */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #27408B; /* Darker royal blue for dropdown */
    min-width: 200px;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #fff; /* White text color */
    text-decoration: none;
    font-family: sans-serif
}

.dropdown li a:hover {
    background-color: #1E3A6B; /* Slightly darker blue for dropdown hover */
}

/* Show dropdown on hover */
.main-menu li:hover .dropdown {
    display: block;
}

footer {
    margin-top: auto; /* Push the footer to the bottom only if necessary */
    padding: 10px 0; /* Adjust padding as needed */
    background-color: #ffffff; /* Optional: Footer background */
}

.no-borders {
    border: none;
    border-collapse: collapse;
  }
  
  .no-borders td, .no-borders tr {
    border: none;
  }