body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

h1 {
  color: #2e5f2e;
}

body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

h1 {
  color: #2e5f2e;
}

.colors {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.color {
  padding: 10px 20px;
  border-radius: 5px;
  color: black;
  font-weight: bold;
  cursor: grab;
  border: 1px solid #333;
  user-select: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  border: 1px solid #444;
  padding: 6px 8px; /* Más compacto */
  text-align: left;
  font-size: 14px;
  overflow-wrap: break-word;
}

.color-drop {
  height: 32px;
  border: 2px dashed #ccc;
  text-align: center;
  vertical-align: middle;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
}

.color-drop.correcto {
  border: 2px solid green;
  background-color: green;
  color: white;
}

.color-drop.incorrecto {
  border: 2px solid red;
  background-color: red;
  color: white;
}

.buttons {
  margin-bottom: 10px;
}

button {
  padding: 10px 20px;
  margin-right: 10px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-height: 700px) {
  th, td {
    font-size: 13px;
    padding: 4px 6px;
  }

  .color-drop {
    height: 28px;
  }
}
