#lang-switcher {
  margin: 0;
  text-transform: uppercase;
  font-size: 10px;
}

.countdown-timer {
  position: relative;
  height: 150px;
  width: 300px;
  max-width: 90%;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin-bottom: 10px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.input {
  box-sizing: border-box;
  width: 100%;
  max-width: 260px;
  padding: 4px 6px;
  font: 12px Georgia, "Times New Roman", Times, serif;
}

.textarea-input {
  max-width: 100%;
  width: 100%;
}

.btn-submit {
  width: 109px;
  height: 34px;
  border-radius: 3px;
  background-color: #f7a7b2;
  box-shadow: inset 0 2px rgba(255, 255, 255, .29);
  border: solid 1px #afabaa;
  font-weight: bold;
  color: #fff;
  margin-top: 4px;
}

#lang-switcher a {
  color: #E5FFC4;
  text-decoration: none;
}

#lang-switcher a.lang-active {
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: underline;
}

.wheel-progress {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.wheel-progress li {
  padding: 6px 14px;
  margin-bottom: 4px;
  border-left: 4px solid #e499ba;
  background: #fff7fa;
  font-size: 14px;
  color: #66665E;
}

.wheel-progress li.wheel-progress-done {
  border-left-color: #00ffbf;
  background: #eafff8;
  color: #999;
  text-decoration: line-through;
}

.wheel-progress li.wheel-progress-active {
  border-left-color: #0C95C9;
  font-weight: bold;
  color: #333;
}

.service-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0 25px;
}

.service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid #e499ba;
  border-radius: 999px;
  background: #ffffff;
  color: #66665E;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.service-toggle:hover {
  border-color: #0C95C9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.service-toggle input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.service-toggle span {
  position: relative;
  padding-left: 22px;
}

.service-toggle span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #e499ba;
  border-radius: 4px;
  background: #ffffff;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.service-toggle span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 5px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.service-toggle input[type="checkbox"]:checked + span::before {
  background: #00ffbf;
  border-color: #00ffbf;
}

.service-toggle input[type="checkbox"]:checked + span::after {
  opacity: 1;
  border-color: #549900;
}

.service-toggle:has(input:checked) {
  border-color: #00ffbf;
  background: #eafff8;
  color: #333;
}

.service-toggle input[type="checkbox"]:focus-visible + span::before {
  outline: 2px solid #0C95C9;
  outline-offset: 2px;
}
.container {
  position: relative;
  width: 100%;
  max-width: 512px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.roulette {
  grid-area: 1 / 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: red;
  background-image: url('../images/wheel1.png');
  background-size: cover;
  border-radius: 50%;
}

.spinner,
.spinner2 {
  grid-area: 1 / 1;
  cursor: pointer;
  color: red;
  font-weight: bold;
  border: none;
  position: relative;
  width: 42%;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  z-index: 1000;
  background-color: #00ffbf;
  outline-color: transparent;
  outline: 0;
  font-size: clamp(8px, 3.5vw, 14px);
}

.spinner .pointer,
.spinner2 .pointer {
  position: absolute;
  width: 0;
  height: 0;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #00ffbf;
}

.main {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

.main-finished {
  margin-top: 20px;
}
