/* style.css */
/* --- General Layout --- */
body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

/* --- Cards --- */
.card {
  border-radius: 1rem;          /* esquinas suaves */
  border: none;                 /* sin bordes duros */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* --- Buttons --- */
.btn {
  border-radius: 999px;         /* botones redondeados tipo "pill" */
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: transform 0.15s ease;
}

.btn:hover {
  transform: scale(1.05);
}

/* --- Tables --- */
.table {
  border-radius: 0.75rem;
  overflow: hidden;
}

.table thead th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* --- Forms --- */
.form-control, .form-select {
  border-radius: 0.75rem;
  padding: 0.6rem 0.9rem;
}

.form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

/* --- Navbar/Header --- */
.navbar {
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* --- Animations / Subtle Effects --- */
a {
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  text-decoration: underline;
}

/* --- Responsive tweaks --- */
@media (max-width: 576px) {
  .card {
    border-radius: 0.75rem;
  }
  .btn {
    padding: 0.45rem 1rem;
  }
}
