/* Modernized styles-bacteria-game.css */

.game-table {
  text-align: center;
  width: 100%;
  table-layout: auto;
}

td {
  position: relative;
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  padding: 0 !important;
  border: 1px solid rgba(63, 63, 70, 0.4) !important;
  border-radius: 8px;
  overflow: hidden;
}

td:after {
  content: '';
  display: block;
  margin-top: 100%;
}

td .cell-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(229, 231, 235, 0.8);
  font-weight: 700;
}

.player {
  width: 80%;
  height: 80%;
  position: absolute;
  left: 10%;
  top: 10%;
  opacity: 0.95;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
  z-index: 10;
}

/* Path Cells styled as dark glass with colored glows */
.celda-camino {
  background-color: rgba(56, 189, 248, 0.1) !important; /* sky-400 */
  box-shadow: inset 0 0 12px rgba(56, 189, 248, 0.05);
}

.celda-camino-verde {
  background-color: rgba(16, 185, 129, 0.15) !important; /* emerald-500 */
  box-shadow: inset 0 0 12px rgba(16, 185, 129, 0.1);
  color: #34d399 !important;
}

.celda-camino-amarillo {
  background-color: rgba(245, 158, 11, 0.15) !important; /* amber-500 */
  box-shadow: inset 0 0 12px rgba(245, 158, 11, 0.1);
  color: #fbbf24 !important;
}

.celda-camino-rojo {
  background-color: rgba(244, 63, 94, 0.15) !important; /* rose-500 */
  box-shadow: inset 0 0 12px rgba(244, 63, 94, 0.1);
  color: #fb7185 !important;
}

.celda-camino-cyan {
  background-color: rgba(6, 182, 212, 0.2) !important; /* cyan-500 */
  box-shadow: inset 0 0 12px rgba(6, 182, 212, 0.15);
  color: #22d3ee !important;
}