body, ul, h3 {
   font-family: Arial, sans-serif;
   margin: 0;
   padding: 0;
}

.dropdown-content {
    background-color: #f9f9f9;
    border-top: 2px solid #6a95b3;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    display: none;
    left: 0;
    min-width: 160px;
    position: absolute;
    top: 100%;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    display: block;
    padding: 12px 16px;
    text-align: left;
    text-decoration: none;
}

 dropdown-content a:hover {
     background-color: #ddd;
}

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

 .main-content {
     flex: 1;
     padding: 0; 
}

.map-section {
    background-color: white;
    border: 1px solid red;
    margin-bottom: 20px;
    padding: 10px;
}

#map {
    display: block;
    height: 500px;
    width: 100%;
}

.row-container {
    background-color: #f0f0f0;
    display: flex;
    padding: 10px;
}

.side-menu {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    flex: 0 0 180px;
    margin-right: 20px;
    padding: 10px;
}

.side-menu h3 {
    background-color: #5d5d5d;
    border-radius: 3px;
    color: white;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
}

.static-menu-list {
    list-style-type: none;
}

.static-menu-list li a {
    border: 1px solid #aaa;
    border-radius: 3px;
    color: #333;
    display: block;
    margin: 5px 0;
    padding: 8px 15px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.static-menu-list li a:hover {
    background-color: #6a95b3;
    color: white;
    font-weight: bold;
}

.top-menu-container {
    background-color: #3e3e3e;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#main-menu {
    display: flex;
    list-style-type: none;
}

#main-menu li {
    display: block;
    position: relative;
}

#main-menu li a {
    color: white;
    display: block;
    font-weight: bold;
    padding: 15px 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}

#main-menu li a:hover {
    background-color: #555;
}
