.row.custom-row {
  margin-left: 0; /* Usunięcie marginesów */
  margin-right: 0;
}
    
.col.custom-col {
  padding-left: 0.25em; /* Ustawienie marginesów */
  padding-right: 0.25em;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}


body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #111; /* Opcjonalnie, kolor tła */
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr); /* Zapewnienie równych rzędów */
  gap: 0.5em; /* Odstępy między komórkami */
  width: 80vmin; /* 80% mniejszej wartości między szerokością a wysokością viewportu */
  height: 80vmin; /* 80% mniejszej wartości między szerokością a wysokością viewportu */
}

.cell {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 5px; /* Opcjonalnie, zaokrąglone rogi */
  color: #f6b6f0;
  font-family: Arial, sans-serif;
  font-size: 1.5em;
  text-align: center;
  box-shadow: 0 0 7px #f6b6f0, 0 0 15px #FF82F4, 0 0 20px #EA25B5, 0 0 30px #EA25B5;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 7px #f6b6f0, 0 0 15px #FF82F4, 0 0 20px #EA25B5, 0 0 30px #EA25B5;
  }
  25% {
    box-shadow: 0 0 15px #f6b6f0, 0 0 20px #FF82F4, 0 0 25px #EA25B5, 0 0 35px #EA25B5;
  }
  50% {
    box-shadow: 0 0 20px #f6b6f0, 0 0 25px #FF82F4, 0 0 35px #EA25B5, 0 0 45px #EA25B5;
  }
  75% {
    box-shadow: 0 0 15px #f6b6f0, 0 0 20px #FF82F4, 0 0 25px #EA25B5, 0 0 35px #EA25B5;
  }
}

.cross {
    background-image: url('../../_assets/no.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 100%;
}