body {
  background-color: #282b31;
  height: 100vh;
}

h1 {
  font-family: 'Playfair Display', sans-serif;
  color: #abb2c0;
  text-align: center;
}

h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 200px;
  font-weight: 500;
  color: #abb2c0;
}

h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 80px;
  font-weight: 500;
  color: #abb2c0;
}

h4 {
  font-family: 'Playfair Display', sans-serif;
  color: #5c6371;
  font-size: 30px;
  font-style: italic;
  text-align: center;
}

h5 {
  font-family: 'Playfair Display', sans-serif;
  color: #abb2c0;
  font-size: 36px;
}

div select .h5 {
  font-family: 'Playfair Display', sans-serif;
  color: #abb2c0 !important;
  font-size: 36px;
}

h6 {
  font-family: 'Quicksand', sans-serif;
  font-size: 45px;
  color: #abb2c0;
}

#tournament-name {
  font-size: 32px !important;
}

hr {
  width: 300px;
  border-color: #5c6371;
  padding: 10px 0;
}

p {
  font-family: 'Playfair Display', sans-serif;
  color: #abb2c0;
  font-size: 15px;
}

th {
  font-family: 'Playfair Display', sans-serif;
  color: #abb2c0 !important;
  font-size: 24px;
  text-align: center;
}

td {
  font-family: 'Playfair Display', sans-serif;
  color: #abb2c0 !important;
  font-size: 20px;
  border: none !important;
}

tr {
  text-align: center;
}

#info {
  font-size: 25px;
  color: #5c6371;
}

#levels {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  margin-top: auto;
}

#levels-title {
  text-align: center;
}

.form {
  padding: 20px 0;
  margin-top: 20px;
  text-align: center;
}

.blinds {
  text-align: center;
  padding-top: 10px;
}

.play-pause-container {
  display: flex;
  flex-direction: row;
  text-align: center;
}

.play-pause-hr {
  width: 30%;
}

#play-pause {
  text-align: center;
}

.material-icons {
  font-size: 50px;
}

.material-icons:hover {
  cursor: pointer;
}

#play-button {
  color: #97c475;
}

#next-round-button{
  color: #97c475;	
}

#previous-round-button {
  color: #97c475; /* change the color as per your design */
  font-size: 50px; /* adjust the font size if necessary */
  cursor: pointer;
}

#round {
  position: relative;
}

#settings-container {
  position: absolute;
  float: right;
}

#settings-button {
  color: #5c6371;
  float: right;
}

#info-close {
  color: #5c6371;
  font-size: 25px;
  margin-top: auto;
}

#settings {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

#pause-button {
  color: #5c6371;
}

#next-blind {
  padding-top: 10px;
}

.players-remaining {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.players-remaining i {
  font-size: 28px;
}

#player-add {
  color: #97c475;
}

#player-remove {
  color: #e26b73;
}

.hidden {
  display: none;
}

.round-time {
  text-align: center;
}

.list-group-item {
  background-color: #282b31 !important;
  color: #abb2c0;
  font-family: 'Playfair Display', sans-serif;
  border: 0;
}

.btn-default {
  font-family: 'Playfair Display', sans-serif;
  color: #abb2c0;
  background-color: #282b31;
}

@media (min-width: 577px) {
  .container {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
	}
}

@media (max-width: 576px) {
  .container {
    position: relative;
    top: 50%;
	transform: translateY(-50%);
  }

  #tournament-name {
    font-size: 28px !important;
  }

  h2 {
    font-size: 150px;
  }

  h3 {
    font-size: 65px;
  }

  h4 {
    font-size: 18px;
    font-style: italic;
  }

  h5 {
    font-size: 24px;
  }

  hr {
    width: 200px;
  }
}

@media (max-width: 385px) {
  h2 {
    font-size: 140px;
  }

  hr {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .container {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }

  .play-pause-hr {
    display: none;
  }
}

/* Timer wrapper for edit controls */
.timer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.time-edit-btn {
  color: #5c6371;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.2s;
  position: absolute;
}

#time-subtract {
  left: -80px;
}

#time-add {
  right: -80px;
}

@media (max-width: 576px) {
  #time-subtract {
    left: -50px;
  }
  #time-add {
    right: -50px;
  }
}

.time-edit-btn:hover {
  color: #97c475;
}

/* Last minute enlarged timer */
.last-minute {
  font-size: 250px !important;
  transition: font-size 0.3s ease;
}

@media (max-width: 576px) {
  .last-minute {
    font-size: 180px !important;
  }
}

@media (max-width: 385px) {
  .last-minute {
    font-size: 160px !important;
  }
}

/* Average stack block */
.avg-stack-block {
  /* Same row as other stats */
}

/* Settings labels */
#tts-label {
  color: #a9b1c1;
}

/* Hamburger menu - fixed top right */
#menu-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

#menu-btn {
  color: #abb2c0;
  cursor: pointer;
  font-size: 36px;
  transition: color 0.2s;
}

#menu-btn:hover {
  color: #97c475;
}

.menu-item {
  color: #abb2c0;
}

#menu-dropdown {
  position: absolute;
  top: 45px;
  right: 0;
  background-color: #363a42;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 220px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  color: #a9b1c1;
  font-family: 'Playfair Display', sans-serif;
  font-size: 16px;
  transition: background-color 0.2s;
}

.menu-item:hover {
  background-color: #424750;
}

.menu-check {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  font-size: 20px;
  color: #97c475;
}

/* Volume slider styling */
.volume-item {
  padding: 12px 20px;
}

#volume-slider {
  width: 120px;
  height: 6px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: #5c6371;
  border-radius: 3px;
  outline: none;
}

#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #97c475;
  cursor: pointer;
}

#volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #97c475;
  cursor: pointer;
  border: none;
}

/* Sass slider styling */
#sass-slider {
  width: 120px;
  height: 6px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: #5c6371;
  border-radius: 3px;
  outline: none;
}

#sass-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e5c07b;
  cursor: pointer;
}

#sass-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e5c07b;
  cursor: pointer;
  border: none;
}

/* Voice selector styling */
#voice-select {
  width: 140px;
  padding: 4px 8px;
  background-color: #282b31;
  color: #a9b1c1;
  border: 1px solid #5c6371;
  border-radius: 4px;
  font-family: 'Playfair Display', sans-serif;
  font-size: 12px;
  cursor: pointer;
  outline: none;
}

#voice-select:hover {
  border-color: #97c475;
}

#voice-select option {
  background-color: #282b31;
  color: #a9b1c1;
}
