@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import "tailwindcss";


body {
  font-family: "Inter", sans-serif;
}

.bgBlue {
  background-color: #00AEEF;
}

.bgBlue:hover {
  background-color: #0086b3;
  /* Slightly darker */
}

.txtBlue {
  color: #00AEEF;
  border-color: #00AEEF;
}

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.3s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 50;
  max-height: 420px;
  overflow-y: auto;
  border: 1px solid #f3f4f6;
  margin-top: 8px;
}

.search-results.hidden {
  display: none;
}

.search-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover {
  background: #f5f7fa;
}

.search-type {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.search-input {
  width: 280px;
  padding: 10px 16px;
  border-radius: 9999px;
  background-color: #F3F4F6;
  border: 1px solid transparent;
  font-size: 14px;
  transition: all 0.2s;
}

.search-input:focus {
  outline: none;
  background-color: white;
  border-color: #00AEEF;
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);

  width: 320px;
}

/* Team Avatar Styles */
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}