
header {
    padding: 20px;
    display: flex;
    align-items: center;
    background-color: lightslategray;
}

h1 {
    margin: 0;
    text-align: center;
    font-family: "Copperplate", "Fantasy", monospace;
    font-size: 30px;
    color: whitesmoke;
}

#logo {
    position: fixed;
    top: 10px;
    right:80px;
    width: auto;
    height: 5%;
    background-color: lightslategray;
    padding: 10px;
}

#search-results-container {
    position: fixed;
    top: 170px;
    right:0px;
    width: 19%;
    height:23%;
    background-color: gray;
    padding: 10px;
    overflow-y: auto;
}

body {
    margin: 0;
    padding: 0;
}

main {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 90vh;
    background-color: gray;
}

#map {
    background-color: aliceblue;
    flex: 1;
}

.search-and-reviews {
    max-height: 650px;
    overflow-y: auto;
    border: 1px solid aliceblue;
    padding: 20px;
    box-sizing: border-box;
    width: 300px;
}

#review-container {
    position: fixed;
    bottom: 10px;
    right:0px;
    width: 19%;
    height: 50%;
    background-color: lightgray;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

#review-container h2 {
    margin: 0 0 10px;
    font-size: 18px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

#place-name-filter {
    flex: 1;
    padding: 8px;
    box-sizing: border-box;
    margin-right: 10px;
}

#search-button {
    padding: 8px;
}

#search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#review-results {
    margin-top: 20px;
}
