body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #51dfd0;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  text-align: center;
  border: 2px solid #999;       /* opcional: si quieres que el borde sea visible */
  border-radius: 15px;          /* aquí defines qué tan redondeados serán los bordes */
  background-color: #f8f9fa;    /* opcional: para que se note el contorno */
 
}

h1 {
  margin-bottom: 20px;
}

#controls {
  margin-bottom: 10px;
}

button {
  padding: 10px 16px;
  margin: 5px;
  background-color: #007bff;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

#gameTimer {
  font-size: 18px;
  margin-bottom: 15px;
}

#gameBoard {
  display: grid;
  grid-template-columns: 100px repeat(5, 1fr);
  gap: 2px;
  background: #f8f9fa; /* fondo del tablero en gris claro */
  border: 5px solid #f8f9fa; /* borde del tablero en gris más oscuro */
  overflow-x: auto;
}

.cell {
  background-color: #e4e4e4;
  padding: 6px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
  font-size: 13px;
  border-radius: 10px; 
}

.header {
  font-weight: bold;
  background-color: #f8f9fa;
}

.draggable {
  width: auto;
  max-width: 100%;
  padding: 10px 12px;
  margin: 20px auto;
  background: #007bff;
  border: 2px solid #f8f9fa;
  border-radius: 8px;
  cursor: grab;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* sombra sutil */
  font-weight: bold;
  color: white;
}

.correct {
  background-color: #28a745 !important;
  color: white;
}

.incorrect {
  background-color: #dc3545 !important;
  color: white;
}

.hidden {
  display: none;
}

#result {
  margin-top: 30px;
  text-align: left;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

#resultTable {
  width: 100%;
  border-collapse: collapse;
}

#resultTable th, #resultTable td {
  border: 1px solid #ccc;
  padding: 6px 8px;
  text-align: left;
}

#resultTable tr.failed {
  background-color: #f85c70;
}
