@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Poppins", sans-serif;
}

.container {
    display: flex;
    height: 81vh;
    width: 1260px;
    margin: 0 auto;
    position: relative;
}
.section_container {
    width: 1260px;
    margin: 0px auto;
}

.section_container h2 {
    padding-bottom: 10px;
    padding-top: 10px;
    color: #113d6c;
}
.border-divider {
    width: 97px;
    height: 8px;
    background: #fbbe4a;
    border-radius: 22px;
    margin-bottom: 25px;
}

.sidebar {
    width: 300px;
    background-color: #027381;
    overflow-y: auto;
    border-radius: 10px;
}

.sidebar h2 {
    margin-bottom: 20px;
    color: #243f6b;
}

#continent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#continent-list li {
    padding: 15px 30px;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #007D8D;
    font-family: "Poppins", sans-serif;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    border-left: 4px solid transparent;
}

#continent-list li:hover {
       background-color: #ffffff;
    border-left: 4px solid #027381;
    color: #302D2B;
}

#continent-list li.active {
    background-color: #ffffff;
    color: #113d6c;
    border-left: 4px solid #113d6c;
}


#all-services {
    padding: 8px;
    background-color: #168db4;
    color: white;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    width: 20%;
    margin-top: 25px;
    font-size: 15px;
    transition: background-color 0.3s;
    font-family: "Poppins", sans-serif;
}

#all-services:hover {
    background-color: #007bbd; 
}

.back-button {
    padding: 8px;
    background-color: #FE6F61;
    color: white;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    width: 6%;
    margin-top: 20px;
    font-size: 15px;
    transition: background-color 0.3s;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin: 12px;
}

button.back-button {
    position: absolute;
    left: 330px;
    z-index: 99999;
    top: 15px;
}

.back-button:hover {
    background-color: #008080; 
}

#map {
    flex: 1;
    height: 100%;
    margin-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
}

div#route-map img {
    border: 1px solid #bde8f3;
}

#route-map {
    flex: 1;
    display: none; 
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;

}

.route-map-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
.gm-style .gmnoprint.gm-bundled-control, 
.gm-style .gmnoprint div {
    display: none !important;
}

ul#continent-list h3 {
    background: #113d6c;
    padding: 12px 15px 12px 15px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

button.view-route-button {
    padding: 12px 15px;
    background-color: #ffffff;
    color: #027381;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 15%;
    margin-top: 20px;
    font-size: 15px;
    transition: background-color 0.3s;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin: 12px;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
}

button.view-route-button:hover {
    background-color: #027381;
    color: #fff;
}

button.view-route-button {
    position: absolute;
    right: 30px;
    z-index: 99999;
    bottom: 40px;
}

/* Custom scrollbar styling */

.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
  
  border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #113d6c;
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background-color: #113d6c;
}

#custom-infowindow {
    background: none;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    box-shadow: none;
    border: none;
    display: inline-block;
}

.gm-ui-hover-effect {
    display: none !important; 
}

.gm-style-iw-t::after {
    display: none; 
}