/* ==== Modern UI Upgrade by Raul ==== */

/* Tipografía más limpia */
body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* Bordes suaves en todo */
.table, .card, .form-control, .btn {
  border-radius: 8px !important;
}

/* Tablas centradas y más limpias */
.table {
  border-collapse: separate;
  border-spacing: 0 6px;
}

.table thead th {
  background: #f4f6f9;
  font-weight: 600;
  border-bottom: 2px solid #dee2e6;
}

.table tbody tr {
  background: #ffffff;
  transition: all 0.2s;
}

.table tbody tr:hover {
  background: #f7faff;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
}

/* Formularios */
.form-control {
  border-radius: 6px;
  border: 1px solid #ced4da;
  transition: 0.25s;
}

.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
}

/* Botones modernos */
.btn-primary {
  background: #3b82f6;
  border-color: #357ae8;
}

.btn-primary:hover {
  background: #2563eb;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Centrar contenido de forms y grids */
.ew-form, form, .row, .ew-grid {
  max-width: auto;
  margin: auto;
}
