body {
  font-family: Arial, sans-serif;
  background: #f3f3f3;
  /* padding: 40px; */
}

.container {
  /* max-width: 480px; */
  margin: auto;
  background: white;
  padding: 30px;
  /* border-radius: 8px; */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

input, button {
  width: 100%;
  padding: 1rem;
  margin: .8rem 0 2rem;
  border: 1px solid #ccc;
  border-radius: .4rem;
}

button {
  background: #2e86de;
  color: white;
  cursor: pointer;
}

#results {
  margin-top: 2rem;
}

.result-item {
  background: #e9f7ef;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 5px solid #2ecc71;
}
 

 /* suggestion-items coding */

    #suggestions {
      max-height: 15rem;
      /* margin-top: 7rem; */
      overflow-y: auto;
      position: absolute;
      background: white;
      width: 30rem;
    }
   
    .suggestion-item {
      padding: .8rem;
      cursor: pointer;
    }
    .suggestion-item:hover {
      background-color: #f0f0f0;
    }

    /* from lebel */
    #soggestions {
      max-height: 15rem;
      /* margin-top: 7rem; */
      overflow-y: auto;
      position: absolute;
      background: white;
      width: 30rem;
    }
   
    .soggestion-item {
      padding: .8rem;
      cursor: pointer;
    }
    .soggestion-item:hover {
      background-color: #f0f0f0;
    }
    
    .searchForm {
      position: relative;
      width: 30rem;
    }

    /* to for */
    /* .to_suggestion{
      margin-top: 70px;
    } */

  
    input {
      width: 100%;
      padding: 10px;
    }
    ul {
     max-height: 150px;
      overflow-y: auto;
      position: absolute;
      background: white;
      width: 300px;
    }
    li {
      list-style-type: none;
      padding: 10px;
      cursor: pointer;
    }
    li:hover {
      background-color: #f1f1f1;
    }



    /* Drop pic sections */
.drop_pic-section{
   background:linear-gradient(#1c191e0a,#1c191e0a), url(img/drop_pic1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    position: relative;
}











  