  /* Body Styles */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #d1cece36;
    /* Light gray background */
  }


  /* Navbar Styles */
  .navbar {
    padding: 10px;
  }

  .navbar-nav {
    flex-direction: row;
  }

  .navbar-nav .nav-item {
    margin-left: 10px;
  }


/* Navbar Styling */
.navbar-logo {
  font-family: 'Pacifico', cursive; /* Use the stylish font family */
  font-size: 1.5rem; /* Adjust the font size as needed */
  color: #350228; /* Adjust the color as needed */
  margin: 0; /* Ensure no extra margin */
  padding: 0; /* Ensure no extra padding */
}

.nav-link {
    margin-left: 15px;
    font-weight: bold;
}
/* Ensure consistent navbar height with transparent border */
.nav-link, .login-btn {
  border-bottom: 3px solid transparent; /* Transparent border initially */
  box-sizing: border-box;
}

.nav-link:hover, .login-btn:hover {
  color: #350228;
  border-bottom: 3px solid #350228; /* Visible border on hover */
}

.logout_li {
  background: #c50909;
  border-radius: 8px;
}

.form-control:focus{
  box-shadow: none;
  border-color: rgb(232, 230, 232);
}
.search-results{
  width: 200px;
  position: absolute;
  top: 55px;
  background: #fff;
  z-index: 1;
}


#searchResults ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
#searchResults li {
  padding: 10px;
  cursor: pointer;
}
#searchResults li:hover{
  background-color: rgb(250, 250, 252);
}

  /* Show the bottom navbar only on medium and smaller screens */
  .bottom-nav {
    display: none;
  }

  @media only screen and (min-width: 834px) and (max-width: 1112px) {
    #cart-quantity{
      position: relative;
      top: -51px;
      left: 14px;
    }
    .searcFromDiv{
    height: 60px;
    margin-top: 10px;
    }
    #searchInput{
      width: 200px;
      border-radius: 5px 0px 0px 5px;
      height: 60px;
    }
    .searchSubmit{  
      width: 50px;
      border-radius: 0px 5px 5px 0px;
      border-left: 0;
      height: 60px;
    }
    .logout_li{
     
     padding: 5px 10px;
    }
  }

  @media (min-width: 768px) {
    .bottom-nav {
      display: flex;
      justify-content: space-around;
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: #f8f9fa;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
      padding: 10px 0;
      z-index: 1000;
    }

    .bottom-nav a {
      color: #000;
      text-align: center;
      font-size: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      height: 100%;
      position: relative;
      top: 10px;
    }

    .bottom-nav a .fa {
      font-size: 20px;
      margin-bottom: 2px;
      /* Space between icon and text */
    }
    .logout_li{
     
     padding: 5px 10px;
    }
  }
  @media (max-width: 1366px) {
    .bottom-nav {
      display: flex;
      justify-content: space-around;
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: #f8f9fa;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
      padding: 10px 0;
      z-index: 1000;
    }

    .bottom-nav a {
      color: #000;
      text-align: center;
      font-size: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      height: 100%;
      position: relative;
      top: 10px;
    }

    .bottom-nav a .fa {
      font-size: 20px;
      margin-bottom: 2px;
      /* Space between icon and text */
    }
    .logout_li{
     
     padding: 5px 10px;
    }
  }
  

  /* Footer Styles */
footer {
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow on top */
}

footer h5 {
  color: #333; /* Dark gray text */
}

footer a {
  color: #007bff; /* Bootstrap primary color */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline; /* Underline effect on hover */
}
