body {
    background-image: url("https://images.unsplash.com/photo-1683009427513-28e163402d16?q=80&w=2370&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-attachment: fixed;
}

.container {
  width: 75%;
}

nav {
  color: #fff;
  background-color: #712c2e;
}

.btn-brown {
  background-color: #712c2e;
}

.btn-brown:hover {
  background-color: #9e4a4b;
}

.header-message{
  color: #9e4a4b;
}

.searchBox{
  margin-top:50px;
}

a{
  color: white;
}

img {
    min-width: 180px;
    height: 100px;
    /* margin-top:30px; */
}

#city{
  color: #712c2e;
}

.filters{
   padding:30px;
   height:740px;
}
.card {
  position: relative;
  margin: .5rem 0 .5rem 0;
}

.myCard{
    padding:10px;
    /* width:70%; */
}

.card.horizontal .card-image img {
  padding: 0px;
  margin-bottom:5px;
  width: 80px;

}

.card .card-content {
  padding: 0px;
  margin-left:25px;
  margin-bottom:5px;
}

.card .card-action {
padding: 5px 5px 0px 10px;
}

p{
  font-size: 12px;
}

#logo{
    min-width: 60px;
    height: 60px;
}

input[type=search]:not(.browser-default){
  background-color: white;
  padding:5px;
  color:black;
}

.name{
font-weight: bold;
}

.searchResults {
    height: 620px; 
    overflow: scroll;
    background-color: #eee;
    margin:10px; 
}

.result{
    height:740px;
    padding:10px;
}

/* for customizing scrollbar scrollbar */
/* width */
::-webkit-scrollbar {
    width: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

  /*map*/
  #mapid { 
    height:300px;
    margin:30px;

  }

/* modal - copied from https://sabe.io/tutorials/how-to-create-modal-popup-box*/

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 1rem 1.5rem;
  height: 12rem;
  width: 30rem;
  border-radius: 0.5rem;
}

.modal-subtext {
  font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
}

.close-button {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
}

.close-button:hover {
  background-color: darkgray;
}

.show-modal {
  opacity: 1;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  display: block;
}

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 40px;
}

.sidebar li {
  padding: 5px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar li:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  color:black;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}

#contact{
  padding:70px;
  width:700px;
  height:500px;
  margin:70px 110px;
  margin-left:50px;
}