/* locomotive scroll */

.dashboard-card {
  background: white;
  width: 228px;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "poppins";
}

.header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* search filter bar  */

.filter-bar {
  display: flex;
  align-items: center;
  align-items: baseline;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  width: 80%;
  margin: 50px auto;
}

.toggle-buttons {
  background: white;
  border-radius: 25px;
  display: flex;
  padding: 3px;
}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.toggle-btn.active {
  background: black;
  color: white;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  justify-content: end;
}

.filter-group label {
  font-size: 15px;
  color: white;
  font-family: "inter", sans-serif;
  font-weight: 600;
}

.filter-group select {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-btn {
  background: black;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #444;
}

.search-filter-filters {
  display: flex;
  gap: 1rem;
  width: 100%;
}

/* choices styling */
.choices__inner {
  border-radius: 8px !important;
  border: 1px solid white !important;
  background-color: white !important;
  padding: 5px 12px !important;
  min-height: auto !important;
  font-family: "inter", sans-serif;
}

.choices__list--dropdown {
  border-radius: 8px;
}

.choices__list--dropdown .choices__item--selectable {
  padding: 10px;
}

.choices__item--selectable.is-highlighted {
  background-color: black;
  color: white;
}


/* service card css */
