body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(0, 0, 0, 0.4);
    
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-height: 80%;
    /* Set a max height for the modal content */
    overflow-y: auto;
    /* Enable vertical scroll if needed */
}

/* Container for the image */
.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Container for the map */
.map-container {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*justify-content: center;*/
    margin-left: 225px;
    /* Adjust the left margin to create space between dropdowns and image */
}

/* CSS for container */
.container {
    position: relative;
}

/* CSS for dropdown container */
.dropdown-container {
    position: absolute;
    top: 100px;
    left: -2px;
    right: 1270px;
    /* Adjust the left position to move the dropdowns to the left */
    z-index: 1000;
    border: 1% solid #ccc;
    /* Border properties for the selectable portion */
    border-radius: 8px;
    /* Rounded corners */
    overflow: hidden;
    /* Hide overflow from rounded corners */
}

/* CSS for dropdown */
.dropdown {
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    /* Example font-family */
    background-color: #666;
    /* Dark gray background */
    color: #fff;
    /* White text color */
    padding: 10% 2%;
    /* Increased padding for better spacing */
    width: 250px;
    /* Adjust width as needed */
    transition: background-color 0.3s;
    /* Smooth transition for hover effect */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Add shadow for depth */
    white-space: nowrap;
    /* Prevent text wrapping */
    overflow: hidden;
    /* Hide overflow text */
    text-overflow: ellipsis;
    /* Display ellipsis for overflow text */
    margin-bottom: 10px;
}

/* Hover effect */
.dropdown:hover {
    background-color: #555;
    /* Slightly darker gray on hover */
}

/* Text color inside the modal */
.modal-content p {
    color: #000;
    /* Set the text color to black or your desired color */
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive image */
.modal-content img {
    max-width: 100%;
    /* Ensure images don't exceed the width of the modal content */
    height: auto;
    /* Maintain aspect ratio */
}

/* CSS for dropdown container */
.logo_2 {
    position: absolute;
    top: 124%;
    left: -2px;
    right: 86%;
    z-index: 1000;
}