/* Custom font and base styles */
body {
  font-family: 'Inter', sans-serif;
}

/* Style for the skill suggestion tags */
.suggestion-tag {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  background-color: #f3f4f6; /* gray-100 */
  color: #1e40af; /* blue-800 */
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #d1d5db; /* gray-300 */
  transition: all 0.2s;
}

.suggestion-tag:hover {
  background-color: #e5e7eb; /* gray-200 */
  border-color: #9ca3af; /* gray-400 */
}
