/* style.css */
/* body,
html {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  background-color: #f0f0f0;
} */

.roulette-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: auto;
}

.roulette-wheel {
  width: 100%;
  height: 100%;
  /* transition: transform 4s ease-out; */
}

.decor {
  position: absolute;
  top: 58%;
  left: 48%;
  transform: translate(-50%, -100%);
  height: auto;
  z-index: 2;
  width: 20%;
}

/* Додайте свій CSS тут */
/* .wheel {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-image: url('/public/common/wheel/roulette.png');
  position: relative;
  transition: transform 4s ease-out;
} */

.pointer {
  position: absolute;
  top: 58%;
  left: 20%;
  transform: translate(-50%, -100%);
  height: auto;
  z-index: 1;
  width: 50%;

  position: absolute;
  top: 58.5%;
  left: 20%;
  transform: translate(-50%, -100%);
  height: auto;
  z-index: 1;
  width: 55%;
}

.buttons {
  margin-top: 20px;
}

.sector-button {
  margin: 5px;
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}

#spin-button {
  margin-top: 20px;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}
