* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    
    transition: background-color 0.5s, color 0.5s;
}

.light-mode {
    background-color: white;
    color: black;
}

.dark-mode {
    background-color: #333;
    color: white;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
#top_div {
    width: 100%;
    height: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
}
#title {
    font-size: 24px; /* Adjust the font size as desired */
    font-weight: bold;
}
#DescriptionMemo {
    margin-left:20px;
    float: left;
    width: 600px;
    height: calc(100vh - 50px);
    overflow-y: auto;
}

#map {
    float: left;
    width: 720px;
    height: calc(100vh - 50px);
   
    overflow-y: auto;
}
#Filter {
    flex: 1;
    
    height: calc(100vh - 50px);
    overflow-y: auto;
}
.map-marker {
    transform-origin: 50% 50%;
    transform: scale(1.5); /* Adjust the size of the marker */
}
.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
  
}

.Detailimage {
    max-width: 100%;
    max-height: 100%;
}
input[type="checkbox"]:checked {
    background: orange;
    color: white;
}

input[type="checkbox"] {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    background: lightgray;
    height: 16px;
    width: 16px;
    border: 1px solid white;
    color: white;
}

    input[type="checkbox"]:after {
        content: ' ';
        position: relative;
        left: 40%;
        top: 20%;
        width: 15%;
        height: 40%;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(50deg);
        display: none;
    }

    input[type="checkbox"]:checked:after {
        display: block;
    }

.ImageContainer {
    display: flex;
    align-items: center;
    
    width: 370px;
}
.mySlides {
    max-width: 100%; /* Set the maximum width */
    max-height: 100%;
    
}
.slideshow-container {
    padding: 10px;
    display: inline-block;
    height: 200px; /* Set the width to 30% of the viewport width */
    width: 300px; /* Adjust the maximum width as needed */
    display: flex;
    align-items: center;
    
}

/* Style the previous and next buttons as you provided */
/* Next & previous buttons */
.prev1, .next1 {
    align-items: center;
    
    height: 100vh;
    transition: 0.6s ease;
}
.prev, .next {
    cursor: pointer;
    color: rgb(198, 24, 24);
}
    /* Position the "next button" to the right */
    .next {
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }
/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
