/* Doctor Search Bar */
.gdc-doctor-search {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  max-width: 1200px;
  margin: 0 auto 40px;
}

.gdc-search-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.gdc-search-group {
  flex: 1;
  position: relative;
}

.gdc-select,
.gdc-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 15px;
  color: #1f1f1f;
  background-color: #fff;
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
}

.gdc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.gdc-search-input-group {
  position: relative;
}

.gdc-search-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 40px;
  background: #1f1f1f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.gdc-search-btn:hover {
  background: #333;
}

@media (max-width: 768px) {
  .gdc-search-row {
    flex-direction: column;
    gap: 12px;
  }
  .gdc-doctor-search {
    padding: 16px;
  }
}

