/* user-app/css/common.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

/* Utilities */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.w-full {
  width: 100%;
}

/* Buttons */
.btn-primary {
  background-color: #4da6ff;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.btn-primary:hover {
  background-color: #3b8ce0;
}

.btn-primary:active {
  transform: scale(0.98);
}
