/* Typography */
html {
  font-size: 14px; /* Bootstrap defaults to 16px */
}

body {
  font-weight: 400;
  line-height: 1.5;
  color: #2a2a2a;
}

/* Buttons */
.btn {
  padding: 0.375rem 0.75rem; /* smaller, tighter */
  font-size: 0.875rem;
  border-radius: 6px; /* softer, modern */
  box-shadow: none !important;
}

.btn-primary {
  background-color: #3b82f6; /* modern blue */
  border-color: #3b82f6;
}

.btn-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
}

/* Inputs */
.form-control {
  font-size: 0.875rem;
  padding: 0.375rem 0.5rem;
  border-radius: 6px;
  border-color: #d1d5db;
}

.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.25);
}

/* Cards */
.card {
  border-radius: 8px;
  border-color: #e5e7eb;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* Navbar */
.navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand {
  font-size: 1rem;
  font-weight: 600;
}

/* Tables */
.table {
  font-size: 0.875rem;
}

.table thead th {
  font-weight: 600;
  border-bottom-width: 1px;
}

/* Badges */
.badge {
  font-size: 0.7rem;
  padding: 0.35em 0.5em;
  border-radius: 4px;
}

/* Alerts */
.alert {
  border-radius: 6px;
  font-size: 0.875rem;
}
