* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f5;
  color: #222;
}

.topbar {
  background: #111;
  color: #fff;
  padding: 12px 16px;
}

.topbar h1 {
  margin: 0;
  font-size: 20px;
}

.topbar h2 {
  margin: 2px 0 0;
  font-size: 14px;
  opacity: 0.8;
}

.container {
  padding: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  margin-top: 10px;
}

select,
input[type="date"],
input[type="number"] {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 16px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  background: #111;
  color: #fff;
  cursor: pointer;
}

button:active {
  transform: scale(0.98);
}

.link-secondary {
  display: inline-block;
  font-size: 13px;
  text-decoration: none;
  color: #555;
  margin-top: 4px;
}

.link-secondary:hover {
  text-decoration: underline;
}

.status {
  font-size: 13px;
  margin-top: 8px;
  min-height: 18px;
}

#resumen-empleados {
  font-size: 13px;
}

.empleado-row {
  border-bottom: 1px solid #eee;
  padding: 6px 0;
}

.empleado-row:last-child {
  border-bottom: none;
}

.empleado-row b {
  font-size: 14px;
}
