.raffle-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
/* .slot-machine {
  position: relative;
  height: 100px;
  width: 100%;
  overflow: hidden;
  border: 2px solid #000;
  border-radius: 10px;
  background-color: white;
}

.reel {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  font-weight: 600;
  text-transform: capitalize;
} */
#winner_display {
  font-size: 1.8rem;
  font-weight: 700;
}
/* .slot {
  text-align: center;
  font-size: 20px;
  padding: 20px 0;
  height: 60px;
  border-bottom: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* .pointer {
  rotate: 180deg;
}
.roulette-container:before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
  border: 6px solid #d6001c;
  background: white;
  border-radius: 50%;
  z-index: 44;
} */

.slot-item.winner-selected {
  background-color: #d6001c;
  font-weight: bold;
  color: white;
  border-radius: 5px;
}
.slot-machine-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 90px;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(245, 245, 245, 1) 100%
  );
  z-index: 100;
  top: 0;
  left: 0;
}
.slot-machine-container:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 90px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(245, 245, 245, 1) 100%
  );
  z-index: 200;
  top: auto;
  bottom: 0;
  left: 0;
}

.summary-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  padding-top: 60px;
}

.summary-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.summary-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}
#past_winners_content {
  margin-top: 20px;
  width: 100%;
}
.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* #export_button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

#export_button:hover {
  background-color: #45a049;
} */
