body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #007bff, #003366);
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.highlighted-numbers {
  margin-top: 20px;
  text-align: center;
  border-radius: 10px;
  display: block;
  position: fixed;
  left: 20px;
  top: 80px;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.highlighted-numbers h2 {
  padding: 10px;
  margin: 0;
}

.highlighted-box {
  background-color: #ff1707;
  color: #fff;
  border-radius: 5px;
  padding: 8px 16px;
  font-size: 50px;
  display: inline-block;
  font-weight: 600;
}

.container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 1087px;
  text-align: center;
}

.logo-section img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  margin-top: 0;
}

.input-section {
  margin-bottom: 20px;
}

.input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#numberInput {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#highlightButton {
  background-color: #ffc107;
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#highlightButton:hover {
  background-color: #ff9800;
}

.tambola-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.number-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  width: 93px;
  height: 65px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* ... Your existing styles ... */

.number-cell.highlight {
  background-color: #9e83c9;
  color: #fff;
  font-weight: 600;
}

.number-cell.previous-highlight {
  background-color: #9e9e9e; /* Change the color for previously highlighted numbers */
}

/* ... Your existing styles ... */



.number-cell.win-animation {
  animation: winAnimation 1s ease-in-out;
}

@keyframes winAnimation {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.number-cell:hover {
  background-color: #ffc107;
}

.highlight {
  background-color: #9e83c9;
}


