@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@font-face {
  font-family: 'Daydream New';
  font-display: swap;
  src: url("/fonts/serif.woff") format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Daydream New';
  font-display: swap;
  src: url("/fonts/serif-italic.woff") format('woff');
  font-weight: 400;
  font-style: italic;
}

body {
  background-image: url('https://daydream.hackclub.com/brushstroking.png'), url('https://daydream.hackclub.com/cloudy-bg-dim.png'), linear-gradient(to bottom, #CCF4FD, #AECDF6);
  background-repeat: repeat, no-repeat, no-repeat;
  background-size: contain, cover, cover;
  background-position: center center, center 20vh, center center;
  background-blend-mode: overlay, normal, normal;

  min-height: 100vh;
  height: max-content;

  font-family: "Atkinson Hyperlegible", sans-serif;
  color: rgb(139, 69, 19);
  counter-reset: step-counter;
}

.card {
  background-color: #fef9dc;
  border: 2px solid #D3B180;
  padding: 0.5rem 2rem;
}
.card.big {
  padding: 1rem 2rem;
}
.card.light {
  background-color: #fffef2;
  border: 1px solid #e9d8b9;
}
.main {
  max-width: 64rem;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.main > .card {
  margin: 3rem 2rem 8rem 2rem;
}

h1,
h2
/* , h3, h4, h5, h6 */ /* feel free to change if this breaks things */
{
  font-family: 'Daydream New', serif;
  color: rgb(131, 55, 16);
  text-align: center;
}
p {
  font-size: 1.25rem;
}

.step {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  position: relative;
  padding-left: 2.5rem;
  counter-increment: step-counter;
}

.step::before {
  content: counter(step-counter) ". ";
  position: absolute;
  left: 0;
  top: 0;
}

.details {
  opacity: 0.8;
  margin-left: 2.5rem;
  margin-top: -0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.details::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 0.5rem;
}

hr {
  color: #e5d2b3;
  margin-inline: 3rem;
}

.simple-link {
  color: rgb(139, 69, 19);
}
.simple-link:hover {
  filter: brightness(110%);
}

.shirt-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.shirt-content {
  flex: 1;
  min-width: 300px;
}

.shirt-image {
  flex-shrink: 0;
  width: 100px;
  margin-inline: auto;
}

.shirt-image img {
  width: 100%;
  height: auto;
  transform: scale(125%);
}

.divider {
  height: 1rem;
}

.email-caption {
  font-size: 1.5rem;
  font-weight: 700;
}
.email-caption + p {
  opacity: 0.5;
  margin-top: -1rem;
}

.email-form {
  border-radius: 9999px;
  background-color: white;
  border: 2px solid #4477A3;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 0 0 #4477A3;
  transition: all 100ms ease;
  margin-top: 2rem;
  margin-bottom: -3rem;
}

.email-form:focus-within {
  border-color: #E472AB;
  box-shadow: 0 4px 0 0 #E472AB;
}

.email-form:has(button:active) {
  border-color: #4477A3;
  box-shadow: 0 4px 0 0 #4477A3;
}

.email-form:has(button:focus) {
  border-color: #4477A3;
  box-shadow: 0 4px 0 0 #4477A3;
}

.email-form-success {
  background-color: #4477A3 !important;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem;
}

.email-input {
  width: 20rem;
  padding: 0.75rem 0.75rem;
  color: #4477A3;
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
}

.submit-button {
  background-color: #FCF7C4;
  height: 100%;
  padding: 0.45rem 1.25rem;
  border-radius: 9999px;
  border-bottom: 3px solid #B3866A;
  cursor: pointer;
  transition: all 100ms ease;
  flex-shrink: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: "Atkinson Hyperlegible" !important;
}

.submit-button:hover {
  border-bottom: 6px solid #B3866A;
}

.submit-button:active {
  border-bottom: 0;
  transform: translateY(2px);
}

.submit-button:focus {
  outline: none;
}

.progress-nav:has(.progress-container) {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.progress-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.progress-step {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.progress-step:not(.active) + * + .progress-step:not(.active) {
  pointer-events: none;
}

.step-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 6px solid #D3B180;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  border-color: #E472AB;
}

.progress-step.current .step-circle {
  border-color: #E472AB;
  background-color: #E472AB;
}

.step-label {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-weight: 600;
  color: #E472AB;
  filter: brightness(0.7);
  line-height: 1.3;
  text-align: center;
  max-width: 120px;
  width: max-content;
  padding: 0.1rem 0.5rem;
}

.progress-step:not(.active) .step-label {
  color: #D3B180;
}

.progress-step.current .step-label {
  color: #ffffff!important;
  filter: brightness(1)!important;
  background: #E472AB;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.progress-line {
  height: 3px;
  background-color: #D3B180;
  flex: 1;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.progress-line.active {
  background-color: #E472AB;
}

@media (max-width: 500px) {
  .progress-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .progress-line {
    width: 3px;
    height: 40px;
    margin: 0.5rem 0;
  }
  
  .step-label {
    max-width: none;
  }
}

.navbar-shirt {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  top: -230%;
  right: -180%;
  transform: rotate(10deg);
}
.navbar-shirt-arrow {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  top: -110%;
  right: -210%;
  transform: rotate(15deg);
  color: #4477A3;
}

.standard-form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem 1rem;
  max-width: 600px;
  width: 100vw;
}
.standard-form .wide {
  grid-column: span 6;
}
.standard-form .wide input {
  width: 100%;
}
.standard-form .wide:has(input[type=file]):has(p) label {
  display: inline;
  width: max-content;
}
.standard-form .wide:has(input[type=file]) p {
  display: inline;
  width: max-content;
  opacity: 0.5;
  margin-left: 0.3rem;
}
.standard-form > .thin {
  grid-column: span 2;
}
.standard-form > div:not(.wide):not(.thin) {
  grid-column: span 3;
}
.standard-form label {
  display: block;
  margin-bottom: 0.25rem;
}
.standard-form > div > * {
  width: 100%;
  box-sizing: border-box;
}
.standard-form *:not(hr) {
  font-size: 1.25rem;
  font-family: 'Atkinson Hyperlegible';
  color: rgb(139, 69, 19);
}
.standard-form input, .standard-form select, .standard-form textarea {
  border: 2px solid #f2e8ca;
  background-color: #fffef2;
  padding: 0.5rem 1rem;
  resize: vertical /* textarea only */
}
.standard-form input[type="radio"],
.standard-form input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  padding: 0;
  vertical-align: middle;
  margin-block: 0.5rem;
}

.standard-form input[type="file"] {
  position: relative;
  padding: 3rem;
  border: 2px dashed #D3B180;
  background-color: #fffef2;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.2s ease;
}

.standard-form input[type="file"]:hover {
  border-color: #E472AB;
  background-color: #fefbf5;
}

.standard-form input[type="file"]::file-selector-button {
  display: none;
}

.standard-form input[type="file"]::before {
  content: "+";
  position: absolute;
  font-size: 3rem;
  font-weight: 300;
  color: #D3B180;
  pointer-events: none;
  transition: all 0.2s ease;
}

.standard-form input[type="file"]:hover::before {
  color: #E472AB;
}

.standard-form .radio-option,
.standard-form .checkbox-option {
  display: flex;
  align-items: flex-start;
}

.standard-form .radio-option label,
.standard-form .checkbox-option label {
  display: inline;
  margin-left: 0.5rem;
}
.standard-form .radio > label {
  margin-bottom: 1rem;
}

.submit-wrapper {
  display: block;
  width: 100%;
  background-color: #E472AB;
  border-bottom: 2px solid #A65A80;
  color: white !important;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  margin: 1rem auto;
  position: relative;
  overflow: visible;
  transition: all 0.1s ease;
  grid-column: span 6 !important;
  margin-bottom: -3rem;
  max-width: 300px;
}
.submit-wrapper button {
  font-family: 'Atkinson Hyperlegible', sans-serif !important;
  width: 100%;
}
.submit-wrapper:hover {
  box-shadow: 0 2px 0 0 #A65A80;
  transform: translateY(-2px);
}
.submit-wrapper:active {
  transform: translateY(0.125rem);
  border-bottom: transparent;
  box-shadow: none;
}
.submit-clouds {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  pointer-events: none;
}
.submit-wrapper .submit-button-elem {
  padding: 1rem 1rem;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
  text-decoration: none;
  display: block;
  text-align: center;
}

.submit-button-elem.disabled, .inline-invite-btn.disabled {
  cursor: not-allowed;
  filter: grayscale(100%);
}

html, body {
  padding: 0px;
  margin: 0px;
}

#auth-nav {
  color: #4477a3;
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: right;
  height: 1.25rem;
  width: calc(100% - 1.5rem);
  position: static;
  z-index: 1000;
  font-size: 1rem;
  opacity: 0.7;
  transition: 0.1s;
}
#auth-nav:hover {
  opacity: 1;
}
#auth-nav .divider {
  height: 100%;
  width: 1px;
  background-color: #4477a350;
  margin-inline: 1rem;
}
#auth-nav button, #auth-nav a {
  background: transparent;
  border: none;
  outline: none;
  text-decoration: underline;
  margin: 0;
  padding: 0;
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-size: 1rem;
  color: #4477a3;
  cursor: pointer;
}

.error {
  background-color: #fedce2;
  border: 1px solid #d37e8c;
  color: #8b133b;
  margin-bottom: 1.5rem;
  padding-inline: 1em;
}
.error h2 {
  color: #841040;
  font-family: "Atkinson Hyperlegible";
}

@keyframes fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}
.flash {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fef9dc;
  border: 2px solid #D3B180;
  border-top: none;
  padding: 0.5rem 2rem;
  animation: fade-out 2s;
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.project-role-option {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(139, 69, 19);
  text-decoration: none;
}
.project-role-card {
  text-decoration: none;
  display: block;
  color: inherit;
}
.project-role-card:hover .project-role-option {
  text-decoration: underline;
}
.project-role-card:hover {
  background-color: #fffffa;
  border: 1px solid #eee1c9;
}
.project-role-card:hover h3, .project-role-card:hover p {
  filter: brightness(1.2);
}

.invite-title-top {
  margin-bottom: 0;
}
.invite-title-bottom {
  font-family: "Atkinson Hyperlegible";
  margin: 0;
}
.card:has(.invite-title-bottom) {
  width: max-content;
  margin: 0.25rem auto 1.5rem auto;
}
.main:has(.invite-title-bottom) {
  max-width: 32rem;
}

.members-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.member-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  min-height: auto;
}

.member-card .member-info {
  flex: 1;
}

.member-card .member-email {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.member-card .member-email.empty-slot {
  opacity: 0.5;
  font-style: italic;
}

.member-card .member-role {
  font-size: 0.9rem;
  color: rgb(139, 69, 19);
  opacity: 0.8;
}

.member-card .member-actions {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 0.5rem;
}

.revoke-btn {
  background: transparent;
  color: rgb(139, 69, 19);
  border: none;
  border-radius: 0;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.revoke-btn:hover {
  background: rgba(139, 69, 19, 0.1);
}

/* Pending notice styling */
.pending-notice {
  margin-top: 1rem;
  color: #6f5a00;
  font-size: 0.9rem;
}

/* Send invite button styling */
.invite-submit-btn {
  background-color: #E472AB;
  border-bottom: 2px solid #A65A80;
  color: white;
  border-radius: 4px;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Atkinson Hyperlegible', sans-serif;
  transition: all 0.1s ease;
  width: 100%;
}

.invite-submit-btn:hover {
  box-shadow: 0 2px 0 0 #A65A80;
  transform: translateY(-1px);
}

.invite-submit-btn:active {
  transform: translateY(0.125rem);
  border-bottom: transparent;
  box-shadow: none;
}

/* Disabled pending submit button styling */
.submit-wrapper.disabled-pending {
  cursor: not-allowed;
}

.submit-wrapper.disabled-pending .submit-button-elem {
  cursor: not-allowed;
}

.submit-wrapper.disabled-pending:hover {
  transform: none;
  box-shadow: none;
}

/* Inline invite form styling */
.inline-invite-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.inline-invite {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.inline-email-input {
  flex: 1;
  border: 2px solid #f2e8ca;
  background-color: #fffef2;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-family: 'Atkinson Hyperlegible', sans-serif;
  color: rgb(139, 69, 19);
  border-radius: 4px;
}

.inline-email-input:focus {
  outline: none;
  border-color: #E472AB;
}

.inline-invite-btn {
  background-color: #E472AB;
  border-bottom: 2px solid #A65A80;
  color: white;
  border-radius: 4px;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: 'Atkinson Hyperlegible', sans-serif;
  transition: all 0.1s ease;
  white-space: nowrap;
}

.inline-invite-btn:hover {
  box-shadow: 0 2px 0 0 #A65A80;
  transform: translateY(-1px);
}

.inline-invite-btn:active {
  transform: translateY(0.125rem);
  border-bottom: transparent;
  box-shadow: none;
}
.card.big:has(.team-members-list) {
  width: 100%;
}
.main:has(.team-members-list) {
  width: 100%;
}
.project-card {
  background-color: #fef9dc;
  border: 2px solid #D3B180;
  padding: 0rem;
}
.project-details, .project-header {
  padding: 0.5rem 2rem;
}
.voting-actions {
  padding: 0rem;
  display: flex;
}
.vote-checkbox {
  width: 100%;
  display: flex;
  cursor: pointer;
}
.vote-checkbox label {
  transform: translateX(-1rem);
}
.card.game-card {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  padding: 0;
  border: 2px solid #e9d8b9 !important;
}
.card.game-card-wrapper {
  margin: 2rem auto;
  width: max-content;
  padding: 1rem;
}

.game-image {
  width: 300px;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #e9d8b9;
  flex-shrink: 0;
}

.game-image-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.game-info h2 {
  text-align: left;
  margin: 0.75rem 1rem 0.25rem 1rem;
  font-size: 1.5rem;
  font-family: 'Atkinson Hyperlegible', sans-serif;
}

.game-info p {
  margin: 0rem 1rem 0.75rem 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.game-byline {
  font-style: italic;
  font-size: 1rem !important;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.pink-link {
  color: #E472AB !important;
  text-decoration: underline;
  font-size: 1.1rem;
  display: inline-block;
  margin: 0.25rem 0;
}

.pink-link:hover {
  filter: brightness(1.1);
}

.external-links {
  margin: 1.5rem auto;
  width: max-content;
}

.team-members-section {
  margin: 2rem 0;
}

.team-members-section h3 {
  text-align: left;
  margin-bottom: 1rem;
}

.review-warning {
  font-weight: 600;
  text-align: center;
  color: rgb(139, 69, 19);
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 1.1rem;
}
.review-shirt-notice {
  font-style: italic;
  text-align: center;
  color: rgb(139, 69, 19);
  opacity: 0.8;
  margin-top: -0.1rem;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.review-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.review-button {
  flex: 1;
  height: max-content;
}

.card.big:has(.email-form) {
  margin-bottom: 5rem;
}

/* Waiting for invite page styles */
.waiting-instructions {
  padding: 1rem;
  text-align: center;
}

.waiting-instructions h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.waiting-instructions p {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.email-display {
  background: #f0f0f0;
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  font-size: 1.2rem;
  color: #333;
  font-family: 'Courier New', monospace;
}

/* Invite cards grid */
.invites-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}

.invite-card {
  padding: 1rem;
}

.invite-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.invite-header h3 {
  margin: 0;
  font-size: 1.3rem;
  flex: 1;
}

.invite-badge {
  background: #4CAF50;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 1rem;
}

.invite-badge.expired {
  background: #f44336;
}

.invite-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.invite-actions {
  margin-top: 1rem;
  text-align: center;
}

.submit-button-elem.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  min-width: auto;
}

/* Projects grid for My Projects section */
.projects-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}

.game-card-wrapper .project-actions {
  text-align: center;
  padding: 0.75rem;
  border-top: 1px solid #e9d8b9;
}

.btn-small {
  background-color: #E472AB;
  border-bottom: 2px solid #A65A80;
  color: white;
  border-radius: 4px;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: 'Atkinson Hyperlegible', sans-serif;
  transition: all 0.1s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-small:hover {
  box-shadow: 0 2px 0 0 #A65A80;
  transform: translateY(-1px);
}

.btn-small:active {
  transform: translateY(0.125rem);
  border-bottom: transparent;
  box-shadow: none;
}

.decline-button {
  transform: translateY(-0.1px);
}

.decline-button:hover {
  box-shadow: 0 2px 0 0 #4b5563;
  transform: translateY(-2px);
}

.decline-button:active {
  transform: translateY(0.125rem);
  border-bottom: transparent;
  box-shadow: none;
}

.accept-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}
.accept-options input {
  font-family: "Atkinson Hyperlegible" !important;
  font-size: 1.25rem !important;
}

.review-card {
  max-width: 48rem;
  width: 100%;
}

.game-card-buttons > div {
  margin: 0.5rem;
  width: calc(100% - 1rem);
}
.game-card-buttons > div > a {
  padding: 0.25rem 0.5rem !important;
  font-size: 1rem !important;
}
.game-card-buttons > div > img {
  scale: 140%;
  translate: 10px
}
.game-card-buttons > div:nth-child(2) {
  filter: grayscale(100%) brightness(80%) contrast(200%);
}

input[disabled], textarea[disabled], select[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.project-vote-action {
  text-align: center;
  padding: 2.5rem;
  padding-bottom: 0;
  flex: 1;
}

.vote-checkbox {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.1rem;
  border: none;
  height: calc(100% - 1rem);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.vote-checkbox input[type="checkbox"] {
  accent-color: #E472AB;
  cursor: pointer;
}

.vote-checkbox:hover {
  color: #E472AB;
}

.game-card-wrapper:has(.vote-checkbox) {
  border-width: 2px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.game-card-wrapper:has(.vote-checkbox) .game-card {
  z-index: 1;
  height: 100%;
}
.game-card-wrapper:has(.vote-checkbox) .game-info {
  height: 100%;
}


.game-card-wrapper:has(.vote-checkbox > input:checked) {
  background: #d2ffd3 !important;
  border: 2px solid #b9e9bb;
}