.toggle-button {
    padding: 5px 10px;
    margin: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-color: #fd9903;
    border-radius: 40px;
    transition: background-color 0.3s;
}

.buttons button {
    color: white;
}
.shad{
    filter: drop-shadow(15px 15px 10px #868686);
}

.toggle-button {
    background-color: #fd9903; /* Normal state */
    color: black;
}

.toggle-button.active {
    background-color: black;
    color: white;
}

/* .border-sty {
    border: 2px solid #fd9903;
    border-radius: 20px;
    padding: 0px;
} */

#listContainer {
    min-height: 200px; /* Example fixed height, adjust as needed */
    height: 200px;     /* Fix the height to avoid dynamic resizing */
    overflow-y: auto; /* Enable scrolling if content overflows */
    
}

.fixed-whatsapp img{
    width: 20%;
}

.fixed-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  padding: 10px;
}



/* Call Button - Right */
.fixed-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #007bff;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Optional: Icon hover effect */
/* .fixed-whatsapp:hover,
.fixed-call:hover {
  transform: scale(1.1);
  transition: 0.3s;
} */
