:root {
  --teal: #1aa6b2;
  --teal-dark: #1495a0;
}

html,
body {
  min-height: 100%;
}

body {
  background-image: url("images/background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card,
.draw-box,
.alert,
.table {
  background: #fff;
}

.text-block {
  background: #f3f4f6;
  text-align: center;
}

.inline-error {
  color: #c0392b;
  font-weight: 600;
  margin: 6px 0 10px;
}

.rating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
}

.rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating label {
  font-size: 24px;
  color: #cbd1d8;
  cursor: pointer;
  margin: 0;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
  color: #f0a231;
}

.is-hidden {
  display: none;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
}

.btn-teal {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

small a {
  color: var(--teal);
  font-weight: 600;
}

.winner-card {
  background: #1aaab7;
  border-color: #bdebe3 !important;
}

.draw-box {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  background: #f8fafc;
}

.draw-name {
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
}
