body {
  background-color: #fff;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.form-group input.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input.form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
/* ========================================== */
/* Enhanced CSS */
.btn-search {
  position: relative;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.btn-search:hover {
  background: #007bff;
  border-color: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.btn-search:hover .w-icon-search {
  color: white;
}

.btn-search:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.btn-search:focus {
  outline: 3px solid rgba(0, 123, 255, 0.3);
  outline-offset: 2px;
}

.w-icon-search {
  font-size: 20px;
  color: #666;
  transition: color 0.3s ease;
}

/* Tooltip */
.btn-search__tooltip {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-search:hover .btn-search__tooltip {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 501px) {
  #searchBtnTop {
    display: none !important;
  }
}

@media screen and (max-width: 500px) {
  .hidesearch {
    display: none !important;
  }

  .header-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #logo {
    margin-right: auto;
  }

  #searchBtnTop {
    margin-left: auto;
  }
}
