body {
  font-family: Arial, Helvetica, sans-serif;
}

.mobile-container {
  width: 100%;
  /**max-width: 480px;*/
  margin: auto;
  background-color: #555;
  height: 30px;
  color: white;
  border-radius: 10px;
}

.topnav {
  /* overflow: hidden; */
  background-color: #333;
  position: relative;
}

/* Top bar links (e.g., "Floreria Cochabamba") */
.topnav > a {
  color: rgb(255, 255, 255); /* White top bar text */
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
  text-align: center;
}

.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Color de la barra */
.active {
  background-color: #00412E; /* 56ccf5 */
  color: white;
}

/* CSS for setting navigation bar static on scroll */
.navigation {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Optional: Add padding to adjust content position */
.content {
  padding-top: 60px;
}

.price-range-con {
  display: flex;
  align-items: end;
  gap: 20px;
  justify-content: center;
}

.price-range-field-con {
  display: flex;
  gap: 10px;
  align-items: center;
}

.price-range-field-con div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-range-con label {
  font-size: 14px;
}

.price-range-con span {
  background: #333;
  height: 2px;
  width: 10px;
}

.hide-menuContainer {
  height: 0px;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  padding: 0px;
}

.show-menuContainer {
  height: 650px;
  transition: height 0.3s ease-in-out;
}

@media screen and (min-width: 700px) {
  .show-menuContainer {
    padding: 20px;
  }
  #menuContainer {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
  }
}

/* Scrollable menu links only */
#myLinks {
  max-height: 480px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

/* Style for links inside the scrollable menu */
#myLinks a {
  color: #333333; /* Different color than topnav */
  text-decoration: none;
  padding: 10px 16px;
  font-size: 16px;
  text-align: center;
}

/* Hover effect for menu links */
#myLinks a:hover {
  background-color: #f0f0f0;
  color: #000000;
}

/* Scrollbar style */
#myLinks::-webkit-scrollbar {
  width: 6px;
}

#myLinks::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
