body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #333;
    color: white;
    z-index: 1000;
}

.container{
	max-width:1920px;
}

#logo {
    font-size: 1.5em;
    font-weight: bold;
}

#search-panel {
    position: relative;
    z-index: 1000;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: 100%;
}

#search-panel input, #search-panel button {
    width: 20%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#map {
    height: calc(100% - 60px);
    width: 100%;
}

#paypal-button-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

@media (max-width: 768px) {

    header {
        flex-direction: column;
    }

    #logo {
        margin-top: 10px;
    }
	#search-panel input, #search-panel button {
		width: 100%;
		margin-bottom: 5px;
	}
}


.info-content img {
    width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 8px;
}

.info-content a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .info-content img {
        max-width: 100%;
    }
}
.info-gallery{
	overflow-x: scroll;
    width: 100%;
    display: flex;
}