/**/
#header {
    background-color: #1977cc; /* Blue background color */
    /* Adjust padding as needed */
}
#topbar {
    background-color: #1977cc; /* Blue background color */
    /* Adjust padding as needed */
}
#navbar ul{
    background-color: #1977cc; /* Blue background color for ul and li elements */
}

#navbar a {
    color: #fff; /* White text color for all links */
    text-decoration: none;/* Remove underline */
	font-weight: bold;
}

#navbar a:hover {
    /*background-color: #ffc107;  Yellow background color on hover */
    color: rgb(248, 131, 21); /* Text color on hover */
	font-weight: bold;
}

#navbar li.dropdown:hover ul {
    display: block; /* Show the dropdown menu on hover */
}

#navbar li.dropdown ul {
    background-color: rgb(248, 131, 21); /* Yellow background color for the dropdown menu */
	border-radius: 10px;
	margin-top: 15px;
}

#navbar li.dropdown ul li a {
    color: #fff; /* White text color for dropdown menu items */
}


/* */