.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.university-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #e3f2fd;
  border: 1px solid #2196f3;
  border-radius: 20px;
  font-size: 14px;
}

.tag-remove {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-remove:hover {
  color: #f44336;
}

.autocomplete-container {
  position: relative;
}

.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #ff7f50;
  border-top: none;
  border-radius: 0 0 0.75rem 0.75rem;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.autocomplete-suggestion {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.autocomplete-suggestion:hover,
.autocomplete-suggestion.selected {
  background-color: #fff5f0;
}

.autocomplete-suggestion:last-child {
  border-bottom: none;
}

.college-name {
  font-weight: 600;
  color: #333;
  display: block;
}

.college-name strong {
  color: #ff7f50;
}

.college-details {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
}

.loading-spinner {
  text-align: center;
  padding: 1rem;
  color: #ff6333;
  font-style: italic;
}

.no-results {
  text-align: center;
  padding: 1rem;
  color: #666;
  font-style: italic;
}

/* Custom scrollbar for suggestions */
.autocomplete-suggestions::-webkit-scrollbar {
  width: 8px;
}

.autocomplete-suggestions::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0 0 0.75rem 0;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb {
  background: #ff7f50;
  border-radius: 4px;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb:hover {
  background: #ff6333;
}

.form-group-highlight {
      background-color: #f0f8f0;
      padding: 1rem;
      border-radius: 0.75rem;
      border: 1px solid #d4edda;
    }