html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.toast-notification {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #c0392b;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: "Boldonse", sans-serif;
  font-size: 1rem;
  max-width: 20rem;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-notification .toast-text {
  flex: 1 1 auto;
}

.toast-notification .toast-close {
  flex: 0 0 auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  padding: 0;
  margin-right: -0.75rem;
  cursor: pointer;
  opacity: 0.8;
}

.toast-notification .toast-close:hover {
  opacity: 1;
}

.timer-toast {
  width: 18rem;
  max-width: 18rem;
  white-space: nowrap;
  justify-content: center;
  cursor: grab;
}

.timer-toast.dragging {
  cursor: grabbing;
}

.timer-toast .toast-text {
  flex: 0 1 auto;
  text-align: center;
}

.timer-toast .timer-value {
  display: inline-block;
  min-width: 2ch;
  text-align: left;
  font-weight: 700;
}

.gioca-top-box {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  min-height: 40vh;
  box-sizing: border-box;
  background-image: url("/images/backgroundGiocatore.jpg");
  background-size: cover;
  background-position: center;
}

.gioca-top-box-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1600px;
  min-height: 100%;
  margin: 0 auto;
  padding: 2rem 4rem;
  box-sizing: border-box;
}

.giocatore-foto {
  flex: 0 0 auto;
  max-height: 100%;
  max-width: 45%;
}

.giocatore-info {
  flex: 1.6 1 0;
  min-width: 0;
  margin-top: 0;
  margin-left: 3.5rem;
  text-align: left;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.giocatore-nome {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

.giocatore-squadra {
  margin-top: -0.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.giocatore-posizioni {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  background-color: rgba(120, 120, 130, 0.4);
}

.posizione-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  font-family: "Boldonse", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
}

.posizione-principale {
  color: #fff;
}

.posizione-principale.posizione-p {
  background-color: #f2a900;
}

.posizione-principale.posizione-d {
  background-color: #3cb043;
}

.posizione-principale.posizione-c {
  background-color: #0077c8;
}

.posizione-principale.posizione-a {
  background-color: #e3242b;
}

.posizione-secondaria {
  border: 2px solid transparent;
}

.posizione-secondaria.posizione-por {
  border-color: #f2a900;
  background-color: rgba(242, 169, 0, 0.25);
  color: #f2a900;
}

.posizione-secondaria.posizione-dc,
.posizione-secondaria.posizione-dd,
.posizione-secondaria.posizione-ds,
.posizione-secondaria.posizione-b {
  border-color: #3cb043;
  background-color: rgba(60, 176, 67, 0.25);
  color: #3cb043;
}

.posizione-secondaria.posizione-e,
.posizione-secondaria.posizione-m,
.posizione-secondaria.posizione-c {
  border-color: #0077c8;
  background-color: rgba(0, 119, 200, 0.25);
  color: #0077c8;
}

.posizione-secondaria.posizione-w,
.posizione-secondaria.posizione-t {
  border-color: #7a3fbf;
  background-color: rgba(122, 63, 191, 0.25);
  color: #7a3fbf;
}

.posizione-secondaria.posizione-a,
.posizione-secondaria.posizione-pc {
  border-color: #e3242b;
  background-color: rgba(227, 36, 43, 0.25);
  color: #e3242b;
}

.posizione-separatore {
  color: #6c6f93;
  font-weight: 700;
}

.giocatore-media-divider {
  align-self: stretch;
  width: 5px;
  background-color: rgba(255, 255, 255, 0.15);
}

.giocatore-media-box {
  flex: 0.8 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.media-titolo {
  font-size: 1.3rem;
  font-weight: 700;
}

.media-titolo-piccolo {
  font-size: 0.9rem;
}

.media-riga {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.media-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.media-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.media-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.media-badge-mv {
  background-color: #0077c8;
  color: #fff;
}

.media-badge-fm {
  background-color: #4fb3e8;
  color: #fff;
}

.media-badge-classic {
  background-color: transparent;
  border: 2px solid #0077c8;
  color: #0077c8;
}

.media-badge-mantra {
  background-color: transparent;
  border: 2px solid #7a3fbf;
  color: #7a3fbf;
}

.media-sep {
  width: 50%;
  height: 3px;
  margin: 0.6rem 0;
  background-color: rgba(255, 255, 255, 0.15);
}

.fade-transition {
  transition: opacity 0.3s ease;
}

.blurred {
  filter: blur(20px);
  /*transform: scale(1.15);*/
}

.gioca-middle-box {
  flex: 0 0 auto;
  width: 100%;
  min-height: 28vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.gioca-middle-box-content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem 4rem;
  box-sizing: border-box;
}

.stats-titolo {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.stats-card {
  background-color: #edf1f7;
  border-radius: 1rem;
  overflow: hidden;
}

.stats-top-row {
  display: flex;
}

.stats-top-item {
  flex: 1 1 0;
  padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-top-item:last-child {
  border-right: none;
}

.stats-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.stats-top-label {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  color: #1f2937;
}

.stats-top-icon {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}

.stats-top-valore {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  color: #2f4bff;
  line-height: 1.2;
}

.stats-bottom-row {
  display: flex;
  padding: 1.2rem 1.5rem;
  gap: 3rem;
}

.stats-bottom-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.stats-bottom-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
}

.stats-bottom-label {
  width: 12rem;
  flex: 0 0 auto;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  color: #1f2937;
}

.stats-bottom-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 0.3rem 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50rem;
  background-color: #dbe6ff;
  color: #2f4bff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.giocatore-stats-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.giocatore-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.giocatore-stat-label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.4);
}

.giocatore-stat-valore {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.1;
  margin-top: 0.1rem;
  color: #fff;
}

.gioca-bottom-box {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #B9FB4F;
}

.gioca-question {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1.75rem 1rem;
}

.gioca-question-number {
  flex: 0 0 auto;
  width: 4rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00653B;
  color: #B9FB4F;
  font-family: "Boldonse", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 100%);
}

.gioca-question-text {
  flex: 0 1 auto;
  text-align: left;
  font-family: "Boldonse", sans-serif;
  font-weight: 400;
  color: #00653B;
  font-size: 1.8rem;
  line-height: 1.5;
}

.gioca-answers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
}

.gioca-answers-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.gioca-answer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21rem;
  white-space: nowrap;
  border: 3px solid #00653B;
  border-radius: 50rem;
  background-color: transparent;
  color: #00653B;
  font-family: "Boldonse", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}

.gioca-answer-btn:hover {
  box-shadow: 0 0 16px rgba(0, 101, 59, 0.5);
}

.gioca-answer-btn:active {
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.25);
}

.gioca-answer-btn.risposta-corretta {
  background-color: #2ecc71;
  border-color: #2ecc71;
  color: #fff;
}

.gioca-answer-btn.risposta-sbagliata {
  background-color: #c0392b;
  border-color: #c0392b;
  color: #fff;
}

.gioca-answer-btn:disabled:not(.risposta-corretta):not(.risposta-sbagliata) {
  opacity: 0.4;
  cursor: not-allowed;
}

.pre-countdown-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
}

.pre-countdown-overlay span {
  font-family: "Boldonse", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #B9FB4F;
}

@keyframes shake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-8px); }
  40%, 60% { transform: translateX(8px); }
}

.shake {
  animation: shake 0.5s;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  height: 100%;
  overflow: hidden;
}

body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background-image: url("/images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin: 1.5rem 0;
  padding: 1.25rem 3.5rem;
  border: 3px solid #00653B;
  border-radius: 50rem;
  background-color: #B9FB4F;
  color: #00653B;
  font-family: "Boldonse", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.15s ease;
}

.button:hover {
  box-shadow: 0 0 16px rgba(185, 251, 79, 0.7);
}

.button:active {
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.35);
}

.button-inverted {
  background-color: #00653B;
  color: #B9FB4F;
  border-color: #00653B;
}

.button-inverted:hover {
  box-shadow: 0 0 16px rgba(0, 101, 59, 0.7);
}

.back-arrow {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  color: #00653B;
  display: inline-flex;
}

.back-arrow svg {
  width: 2rem;
  height: 2rem;
}

.back-arrow-light {
  color: #B9FB4F;
}

.intro-top {
  flex: 0 0 auto;
  width: 100%;
  background-color: #B9FB4F;
  padding: 2rem 1.5rem;
}

.intro-heading {
  color: #00653B;
  font-family: "Boldonse", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: clamp(1.5rem, 6vw, 2.3rem);
  margin: 0;
}

.intro-heading .highlight-line {
  background-color: #00653B;
  color: #B9FB4F;
  padding: 0.22em 0.3em 0.05em;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.intro-bottom {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 1.5rem;
}

.intro-text {
  font-family: "Boldonse", sans-serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 5.5vw, 1.75rem);
  line-height: 1.8;
  margin: 0;
  max-width: 40rem;
  padding: 0 1.5rem;
  box-sizing: border-box;
  color: #fff;
}

.intro-text .text-highlight {
  color: #B9FB4F;
}

.intro-text .text-white {
  color: #fff;
}

.quanti-box {
  background-color: #B9FB4F;
  color: #00653B;
  font-family: "Boldonse", sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  line-height: 1.7;
  text-align: center;
  padding: 3rem 1.75rem 2.5rem;
  width: 72%;
  max-width: 38rem;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 100%);
}

.next-circle {
  display: inline-flex;
  flex-shrink: 0;
  border: 3px solid #00653B;
  border-radius: 50%;
  text-decoration: none;
  transition: box-shadow 0.15s ease;
}

.next-circle:hover {
  box-shadow: 0 0 16px rgba(185, 251, 79, 0.7);
}

.next-circle:active {
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.35);
}

.next-circle img {
  width: 5.5rem;
  height: auto;
  display: block;
  border-radius: 50%;
}

.dati-top {
  width: 100%;
  text-align: center;
  background-color: #00653B;
  color: #B9FB4F;
  padding: 2.5rem 1.5rem 4.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.dati-heading {
  font-family: "Boldonse", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 6vw, 2.3rem);
  line-height: 1.6;
  margin: 0 0 2.5rem;
}

.dati-highlight {
  display: inline-block;
  background-color: #B9FB4F;
  color: #00653B;
  padding: 0.22em 0.5em 0.05em;
  font-family: "Boldonse", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 6vw, 2.3rem);
  margin-bottom: 0.4em;
}

.dati-subheading {
  color: #fff;
  font-family: "Boldonse", sans-serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 5.5vw, 1.8rem);
  line-height: 1.7;
  margin: 0;
}

.dati-form-section {
  flex: 1 1 auto;
  width: 100%;
  background-color: #B9FB4F;
  padding: 3rem 1.75rem;
}

.dati-form-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.dati-field {
  width: 100%;
  max-width: 26rem;
}

.dati-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 3px solid #00653B;
  border-radius: 50rem;
  background-color: transparent;
  color: #00653B;
  font-size: 1.15rem;
  outline: none;
}

.dati-input::placeholder {
  color: #00653B;
  opacity: 1;
}

.dati-input:focus {
  box-shadow: 0 0 0 3px rgba(0, 101, 59, 0.2);
}

.dati-check {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #00653B;
  border: 3px solid transparent;
  border-radius: 50rem;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
}

.dati-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin: 0;
  border: 2px solid #B9FB4F;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
}

.dati-check input[type="checkbox"]:checked {
  background-color: #B9FB4F;
}

.dati-check-text {
  color: #B9FB4F;
  font-size: 1.15rem;
}

.dati-regolamento {
  text-align: left;
  margin-top: -1.2rem;
  margin-left: 1.5rem;
}

.dati-regolamento a {
  color: #00653B;
  font-size: 1rem;
  text-decoration: underline;
}

.risultati-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  box-sizing: border-box;
  background-image: url("/images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.risultati-card {
  position: relative;
  width: 100%;
  max-width: 32rem;
  min-height: 42rem;
  padding: 10.5rem 2.5rem 3rem;
  border: 3px solid #b6ff3c;
  border-radius: 1.5rem;
  background-color: #00653b;
  text-align: center;
  box-sizing: border-box;
}

.risultati-scudetto-wrapper {
  position: absolute;
  top: -7.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 11rem;
}

.risultati-scudetto {
  display: block;
  width: 100%;
}

.risultati-punteggio {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2.5deg);
  width: 80%;
  text-align: center;
  font-family: "Boldonse", sans-serif;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #00653b;
}

.risultati-titolo-riga1 {
  display: inline-block;
  font-family: "Boldonse", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #b6ff3c;
  transform: rotate(-2deg);
}

.risultati-titolo-riga2 {
  margin-top: 0.5rem;
}

.risultati-titolo-riga2 span {
  display: inline-block;
  font-family: "Boldonse", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #1e5631;
  background-color: #b6ff3c;
  padding: 0.3rem 0.6rem;
  transform: rotate(-2deg);
}

.risultati-testo {
  margin-top: 3.5rem;
  padding: 0 1.5rem;
  line-height: 1.15;
}

.risultati-testo-verde {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #b6ff3c;
}

.risultati-testo-bianco {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
}

.classifica-page {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
}

.classifica-logo {
  flex: 0 0 auto;
  max-height: 10vh;
  width: auto;
}

.classifica-box {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  max-width: 45rem;
  min-height: 0;
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  border-radius: 1.25rem;
  background-color: #edf1f7;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.classifica-intestazione {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.classifica-titolo {
  font-family: "Boldonse", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #00653b;
  text-align: center;
}

.classifica-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 0.5rem 0.75rem;
  border-bottom: 2px solid rgba(0, 101, 59, 0.2);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(31, 41, 55, 0.6);
  text-transform: uppercase;
}

.classifica-lista {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.classifica-riga {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  color: #1f2937;
}

.classifica-riga:last-child {
  border-bottom: none;
}

.classifica-col-posizione {
  flex: 0 0 2.5rem;
  font-weight: 700;
  color: #00653b;
}

.classifica-col-nome {
  flex: 1 1 auto;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.classifica-col-punti {
  flex: 0 0 auto;
  min-width: 4.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  background-color: rgba(0, 101, 59, 0.12);
  color: #00653b;
  font-weight: 700;
  text-align: center;
}

.classifica-col-punti-header {
  flex: 0 0 auto;
  min-width: 4.5rem;
  text-align: center;
}

.classifica-partner {
  flex: 0 0 auto;
  max-height: 7vh;
  width: auto;
}

.classifica-controlli {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.classifica-controlli-titolo {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #00653b;
}

.classifica-controlli-bottoni {
  display: flex;
  gap: 0.5rem;
}

.classifica-controllo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: 50%;
  background-color: rgba(0, 101, 59, 0.1);
  cursor: pointer;
}

.classifica-controllo-btn svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #00653b;
}

.classifica-controllo-btn.attivo {
  background-color: #00653b;
}

.classifica-controllo-btn.attivo svg {
  fill: #fff;
}

.classifica-controllo-btn:hover {
  background-color: rgba(0, 101, 59, 0.2);
}
