/* Sourced from src/index.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #fff;
  color: #1f2937;
  margin: 0;
  min-height: 100vh;
}

/* Tailwind Components Translation */
.btn-primary {
  background-color: #4f46e5; /* indigo-600 */
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover {
  background-color: #4338ca; /* indigo-700 */
}

.btn-secondary {
  background-color: #f3f4f6; /* gray-100 */
  color: #1f2937; /* gray-800 */
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary:hover {
  background-color: #e5e7eb; /* gray-200 */
}

.card {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb; /* gray-200 */
  padding: 1.5rem;
}

.input-field {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db; /* gray-300 */
  border-radius: 0.5rem;
}
.input-field:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #4f46e5; /* ring-2 ring-primary-500 */
  border-color: transparent;
}

.profile-progress-bar {
  width: 75%;
}

.match-progress-95 {
  width: 95%;
}

.match-progress-88 {
  width: 88%;
}

.match-progress-92 {
  width: 92%;
}

/* Sourced from src/App.css */
#root {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}
