/* background */
body{
    background-color: #f8f9fa; /* Light gray background */
}
/* Search input group */
.input-group {
    position: relative;
}
/* Header text */
.header-text {
    font-size:3rem;
    line-height: 1.2;
    color: #000000;

  }
/* navbar styles */
.nav-bar{
  text-align: center;
  background-color: salmon;
  border-bottom: solid;
  border-bottom-color: #856404;
  border-bottom-width: 5px;
}
/* Search button color */
.btn {
  color: #fff;
  background-color: #7b141e;
}
/* Current Day Schedular ID */
#currentDay{
    padding: 0px;
    font-size: 20px;
    font-weight: 700;
    color: rgb(119, 169, 119);
    text-align: center;
    margin: 0em;
  }
  /* footer nar bar  */
.footer {
    background-color:  rgb(239, 200, 243);
    height: 7%;
    border-top: solid;
    border-top-color: #898474;
    border-top-width: 5px;
    text-align: center;
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
/* footer text */
  .footer-text{
    width: 100%;
    text-align: center;
    font-size: 15px;
    color:white;
    padding: 12px;
  }
  /* for temperature data display body area */
   .col-12 .box {
    background:whitesmoke;
    border-radius: 12px;
    width: 760px;
    margin-top: -2px;
    margin-left: -10px;
}
/* temperature font */
.temperatureFont {
  font-family: 'Quicksand', sans-serif;
}
/* for city searched box  */
.bg-primary{
  border-radius: 10px;
}
/* temperature display box  */
.bg-light {
  margin-top: 15px;
  /* margin-left: 10px; */
  border-radius: 10px;
  margin-bottom: 17px;
}
/* forecaste Image size */
.imgsize {
  width: 100px;
  float: right;
  margin-right: 50%;
}
/* searched city list */
#historyList {
    list-style: none;
}
/*Large devices (desktops, 992px and up) */
@media only screen and (max-width:992px) {
  .navbar .header-text{
    padding-bottom: 0;
    border-bottom: solid;
    width: 100%;
    text-align: center;
    height: 10%;
  }
  .footer {
    height: 7%;
    border-top: solid;
    border-top-width: 5px;
    text-align: center;
  }
}
/*Small devices (landscape phones, 320px and up)*/
@media only screen and (max-width:320px) {
.col-12 .box {
  width: 100%;
}
.container{
  width: 100%;
}
.navbar .footer .col-4 .row .nav{
  width: 100%;
  height:auto;
}
.header-text{
  font-size: 16px;
}
}
#days{
margin-left: 0px;
}
/* Suggestions dropdown */
.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.suggestions-dropdown .suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.suggestions-dropdown .suggestion-item:hover {
    background-color: #f8f9fa;
}

.suggestions-dropdown .suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-name {
    font-weight: bold;
}

.suggestion-details {
    font-size: 0.9em;
    color: #666;
}
