/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}

.search-wrapper {
  background-color: #f0f4ff;
  min-height: 38px;
  overflow: hidden;
}

.search-wrapper:focus-within {
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25)
}

.search-wrapper .form-control:focus {
  box-shadow: none;
  border-color: transparent;
  background-color: #f0f4ff;
}

.search-wrapper .input-group-text {
  border-radius: 50px 0 0 50px;
}

/* Màu xanh đậm cho nút đặt lịch hẹn */
.header .btn-primary {
  background-image: linear-gradient(247deg, rgb(54, 46, 123) 0%, rgb(54, 91, 126) 87.34%);
}

/* Làm cho nút điện thoại màu nhạt hơn */
.header .btn-light {
  background-color: #f0f4ff;
}

/* Tùy chỉnh màu chữ số điện thoại */
.header.text-primary {
  color: #4863b2 !important;
}

.header .suggestions-wrapper a {
  font-size: 12px;
  color: #2b3268;
  font-weight: 500;
}

.header .suggestions-wrapper a:hover {
  color: #0056b3;
  cursor: pointer;
}

.header .input-group-text {
  border-radius: 50px 0 0 50px;
}

.header .branding {
  min-height: 60px;
}

.header .logo {
  line-height: 1;
  width: 120px;
  margin-right: 12px;
}

.header .logo img {
  max-height: 120px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .search-container {
    width: 95%;
  }

  .header .suggestions-wrapper a {
    font-size: 9px;
  }

  .header .logo img {
    max-height: 85px;
  }

  .header .logo {
    width: 85px;
  }
}
