/* BRUTALISMO PERSONALIZADO */

body {
  background: #ffffff;
  color: #000000;
  font-family: monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

form {
  /* Ya se define con Tailwind en el form principal */
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

input, textarea, select, button {
  font-family: monospace;
  text-transform: uppercase;
  font-size: 0.9rem;
}

input[type="text"],
input[type="number"],
textarea,
select {
  background: transparent;
  color: black;
  border: 1px solid black;
  padding: 0.5rem;
  box-sizing: border-box;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: black;
  color: white;
}

input[readonly] {
  background: #f0f0f0;
}

h2, h3, h4 {
  font-weight: 900;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid black;
  text-transform: uppercase;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.85rem;
}

th, td {
  border: 1px solid black;
  padding: 0.5rem;
  text-align: left;
}

button {
  background: black;
  color: white;
  border: 1px solid black;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
}

button:hover {
  background: white;
  color: black;
}
