/* === UI Enhancements (goad.se) === */

/* 1. Навбар — лёгкое свечение и отделение */
header, .navbar {
  box-shadow: 0 2px 10px rgba(0, 60, 255, 0.3);
  border-bottom: 1px solid rgba(80, 120, 255, 0.2);
}

/* 2. Поле поиска — акцент при фокусе */
header input[type="search"]:focus {
  outline: none;
  box-shadow: 0 0 8px #3b82f6;
  border-color: #3b82f6;
  transition: 0.3s ease;
}

/* 3. Кнопки Войти / Регистрация — hover-эффект */
header .btn:hover {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  box-shadow: 0 0 12px rgba(59,130,246,0.5);
  transition: 0.3s ease;
}

