body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
  box-sizing: border-box;
}

p {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: bold;
}

input[type="number"],
input[type="text"],
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

button {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.clear-button {
  width: 100%;
  background-color: #e94643;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #45a049;
}

/* Ensure form elements have enough spacing */
.number-container,
.categories-container,
.metodos-container,
.description-container,
.registrar-containers,
.clear-containers {
  margin-bottom: 15px;
}

.links-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 15px;
  align-items: center;
}