
body {
  font-family: var(--font-body);
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
  background-attachment: fixed;
}

.container {
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 5vw;
}



.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 5rem;
  margin-bottom: 0px;
}

.section-header p {
  font-family: var(--font-body);
  font-size: 1.3rem;
  margin-top: 0px;
}

.predictions-section {
  background-color: transparent !important;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.predictions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/images/pred_background.png") no-repeat center
    center fixed;
  background-size: cover;
  opacity: 0.4;
  z-index: -1 !important;
  filter: blur(0px);
}

.predictions-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--primary-bg) 20%, transparent);
  pointer-events: none;
}

.fixed-width-wrapper {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  z-index: 1;
  transition: none !important;
  box-sizing: border-box;
}



.prediction-wrapper {
  position: relative;
  z-index: 1;
}

.prediction-form {
  font-family: var(--font-body);
  background-color: rgba(22, 22, 22, 0.85);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 0 25px rgba(157, 68, 255, 0.3); /* ombra viola */
  margin-bottom: 40px;
  border: 1px solid rgba(157, 68, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  font-family: var(--font-body);
  margin-bottom: 25px;
}
.prediction-form::before {
  display: none !important;
}

.label-tournament {
  display: block;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: var(--transition);
  box-sizing: border-box;
}

select.form-control,
select.form-control option {
  background-color: rgba(22, 22, 22, 0.85);
  color: var(--text-primary);
}
select.form-control {
  cursor: pointer;
  text-overflow: ellipsis;
}

select.form-control {
  cursor: pointer;
  text-overflow: ellipsis;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(157, 68, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 16px 35px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
  animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(157, 68, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(157, 68, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(157, 68, 255, 0);
  }
}

.btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25);
  animation: none;
}

.prediction-results {
  margin-top: 50px;
  width: 100%;
  font-size: 1.2rem;
  box-sizing: border-box;
}

.results-header {
  margin: 0 auto;
  background-color: rgba(22, 22, 22, 0.85);
  font-size: 2rem;
  padding: 30px 35px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  border-bottom: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--box-shadow);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 100%;
  box-sizing: border-box;
}

.results-container {
  margin: 0 auto;
  padding: 40px;
  background-color: rgba(22, 22, 22, 0.85);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: 0 0 25px rgba(157, 68, 255, 0.3);
  border: 1px solid rgba(157, 68, 255, 0.1);
  border-top: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 100%;
  box-sizing: border-box;
}

.loading-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background-color: rgba(22, 22, 22, 0.85);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 100%;
  box-sizing: border-box;
}

.loading-container p {
  color: var(--text-secondary);
}


.predicted-heading {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.standings-and-strategy {
  display: flex;
  gap: 30px;
  margin-top: 10px;
  align-items: stretch;
  height: 100%;
}

.standings-list-full,
.strategy-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.standings-list-full {
  flex: 1 1 20%;
  min-width: 200px;
}

.strategy-container {
  flex: 1 1 40%;
  min-width: 300px;
  border-top: none;
  box-sizing: border-box;
}

.strategy-title-box {
  margin-bottom: 30px;
}

.strategy-title-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  margin: 0;
  margin-top: 0;
}

.strategy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  width: 100%;
  box-sizing: border-box;
}

.strategy-title {
  font-size: 1.8rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.strategy-title i {
  color: var(--accent-color);
}

.playstyle-selector {
  margin: 0 auto;
  margin-bottom: 30px;
  background-color: rgba(157, 68, 255, 0.05);
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(157, 68, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.player-item {
  background-color: rgba(18, 18, 18, 0.75);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border: 1px solid rgba(157, 68, 255, 0.05);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 1.4rem;
}
.player-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-item:hover {
  transform: translateX(8px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(157, 68, 255, 0.2);
  cursor: pointer;
}

.player-rank {
  color: #9d44ff;
  font-size: 1.3rem;
  margin-right: 15px;
}

.prediction-details {
  margin: 0 auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  width: 100%;
  box-sizing: border-box;
}

.prediction-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  box-sizing: border-box;
}

.stat-item {
  background-color: var(--secondary-bg);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(157, 68, 255, 0.05);
  box-sizing: border-box;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-body);
}

@media (max-width: 992px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  .standings-and-strategy {
    flex-direction: column;
    gap: 40px;
  }

  .results-header {
    flex-direction: column;
    font-size: 1.5rem;
    padding: 20px;
  }

  .results-container {
    padding: 25px;
  }

  .predicted-heading {
    font-size: 1.6rem;
    text-align: center;
  }

  .session-title {
    font-size: 1rem;
  }

  .position-header h3 {
    font-size: 1.5rem;
  }

  .match-plan h4 {
    font-size: 1.2rem;
  }

  .strategy-container,
  .standings-list-full {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .strategy-details {
    padding: 15px;
  }

  .session-matches {
    padding: 15px;
  }

  .match-details {
    grid-template-columns: 1fr;
  }

  .match {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .result {
    margin-top: 10px;
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .prediction-form {
    padding: 30px;
  }

  .fixed-width-wrapper {
    max-width: 95%;
  }

  .match-details {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .match {
    flex-direction: column;
    align-items: flex-start;
  }

  .result {
    margin-top: 10px;
    align-self: flex-end;
  }

  .player-stats {
    grid-template-columns: 1fr;
  }

  .position-header h3 {
    font-size: 1.5rem;
  }

  .match-plan h4 {
    font-size: 1.4rem;
  }

  .session-title {
    font-size: 1.1rem;
  }
}

section {
  padding: 100px 0;
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .fixed-width-wrapper {
    max-width: 100%;
  }

  .prediction-form {
    padding: 20px;
  }

  .results-header h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1.4rem;
  }

  .prediction-stats {
    grid-template-columns: 1fr;
  }

  .summary-stat span {
    min-width: 110px;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }

  .prediction-form {
    padding: 20px;
  }

  .form-control {
    padding: 12px 15px;
  }

  .btn {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .summary-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .summary-stat span {
    min-width: auto;
  }

  .session-header {
    padding: 15px;
  }

  .session-title {
    font-size: 0.95rem;
  }

  .strategy-title-heading {
    font-size: 1.6rem;
  }
}

/* --------------------------- */
/* STILI PER GIOCATORE ATTIVO */
/* --------------------------- */
.player-item.active {
  transform: translateX(8px);
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(157, 68, 255, 0.3);
  background-color: rgba(157, 68, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 1.4rem;
}

.player-item.active .player-name {
  color: var(--accent-color);
  font-weight: 600;
}

.player-item.active .player-rank {
  color: #ffffff;
}

/* --------------------------- */
/* DETTAGLIO STRATEGIA */
/* --------------------------- */
.position-header {
  display: flex;
  justify-content: center;
  padding: 20px 25px;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.position-header .toggle-icon {
  display: none;
}

.position-header h3 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-color), #b36dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.toggle-icon {
  font-size: 1.3rem;
}

.strategy-details {
  background-color: rgba(18, 18, 18, 0.85);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  border: 1px solid rgba(157, 68, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 100%;
  box-sizing: border-box;
}

/* --------------------------- */
/* STATISTICHE GIOCATORE */
/* --------------------------- */
.player-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
}

.player-stats p {
  margin: 0;
  padding: 12px 15px;
  background-color: rgba(10, 10, 10, 0.3);
  border-radius: var(--border-radius);
  border: 1px solid rgba(157, 68, 255, 0.1);
}

.player-stats strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* --------------------------- */
/* PIANIFICAZIONE PARTITE */
/* --------------------------- */
.match-plan {
  margin-top: 30px;
  width: 100%;
  box-sizing: border-box;
}

.match-plan h4 {
  font-size: 2rem;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
  font-family: var(--font-body);
  letter-spacing: 1.5px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
  color: var(--text-primary);
}

/* --------------------------- */
/* SESSIONI E MATCH */
/* --------------------------- */
.session {
  margin-bottom: 25px;
  background-color: rgba(10, 10, 10, 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(157, 68, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.session-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background-color: transparent;
  width: 100%;
  box-sizing: border-box;
}

.session-title {
  position: relative;
  padding-left: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.session-matches {
  padding: 25px;
  border-radius: var(--border-radius);
  background-color: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  width: 100%;
  box-sizing: border-box;
}

.match {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 10px;
  background-color: rgba(22, 22, 22, 0.75);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.match:last-child {
  margin-bottom: 0;
}

.match-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  align-items: center;
  flex: 1;
}

.match-number {
  font-weight: 600;
  color: white;
}

.placement,
.eliminations,
.time-alive {
  color: var(--text-secondary);
  font-size: 1rem;
}

.placement strong,
.eliminations strong,
.time-alive strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* --------------------------- */
/* RISULTATI MATCH */
/* --------------------------- */
.result {
  padding: 6px 12px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 80px;
  text-align: center;
}

.result.win {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.result.loss {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* --------------------------- */
/* SOMMARIO STILE DI GIOCO */
/* --------------------------- */
.playstyle-summary {
  background-color: rgba(157, 68, 255, 0.1);
  padding: 20px 25px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  border: 1px solid rgba(157, 68, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
}
.summary-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
  font-size: 1.05rem;
  font-family: var(--font-body);
}

.summary-stat span {
  color: white;
  font-weight: 500;
  min-width: 140px;
}

.summary-stat strong {
  color: var(--text-primary);
  font-weight: 600;
}

.matches-container {
  margin-top: 25px;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
}

.playstyle-section {
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  font-family: var(--font-body);
}

/* --------------------------- */
/* COLORI PER SEZIONI STILE DI GIOCO */
/* --------------------------- */
/* BALANCED (verde) */
.playstyle-section:nth-child(1) {
  border: 2px solid rgba(57, 160, 125, 0.9);
}
.playstyle-section:nth-child(1) .session-header {
  background-color: rgba(57, 160, 125, 0.6);
  transition: background-color 0.3s ease;
}
.playstyle-section:nth-child(1) .session-header:hover,
.playstyle-section:nth-child(1) .session-header:focus,
.playstyle-section:nth-child(1) .session-header.active {
  background-color: rgba(57, 160, 125, 0.9);
}
.playstyle-section:nth-child(1) .playstyle-summary {
  background-color: rgba(57, 160, 125, 0.1);
  border: 1px solid rgba(57, 160, 125, 0.4);
}

/* AGGRESSIVE (rosso) */
.playstyle-section:nth-child(2) {
  border: 2px solid rgba(130, 4, 4, 0.9);
}
.playstyle-section:nth-child(2) .session-header {
  background-color: rgba(130, 4, 4, 0.6);
  transition: background-color 0.3s ease;
}
.playstyle-section:nth-child(2) .session-header:hover,
.playstyle-section:nth-child(2) .session-header:focus,
.playstyle-section:nth-child(2) .session-header.active {
  background-color: rgba(130, 4, 4, 0.9);
}
.playstyle-section:nth-child(2) .playstyle-summary {
  background-color: rgba(130, 4, 4, 0.1);
  border: 1px solid rgba(130, 4, 4, 0.4);
}

/* PASSIVE (blu) */
.playstyle-section:nth-child(3) {
  border: 2px solid rgba(0, 0, 100, 0.9);
}
.playstyle-section:nth-child(3) .session-header {
  background-color: rgba(0, 0, 100, 0.6);
  transition: background-color 0.3s ease;
}
.playstyle-section:nth-child(3) .session-header:hover,
.playstyle-section:nth-child(3) .session-header:focus,
.playstyle-section:nth-child(3) .session-header.active {
  background-color: rgba(0, 0, 100, 0.9);
}
.playstyle-section:nth-child(3) .playstyle-summary {
  background-color: rgba(0, 0, 100, 0.1);
  border: 1px solid rgba(0, 0, 100, 0.4);
}

/* --------------------------- */
/* ALERT PERSONALIZZATO */
/* --------------------------- */
.custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(22, 22, 22, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--accent-color);
  max-width: 90%;
  width: 400px;
  animation: alertFadeIn 0.3s ease-out;
}

.custom-alert-message {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-primary);
  padding: 0 15px;
}

.custom-alert-button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  letter-spacing: 1px;
}

.custom-alert-button:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(157, 68, 255, 0.3);
}

.alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  animation: overlayFadeIn 0.3s ease-out;
}

@keyframes alertFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -70%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes overlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* --------------------------- */
/* LINK REGISTRAZIONE */
/* --------------------------- */
.register-link {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 8px 15px;
  border-radius: var(--border-radius);
  margin-top: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.register-link:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}





@media (max-width: 576px) {
  .form-control {
    font-size: 1rem;
    padding: 10px 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  select.form-control {
    font-size: 1rem;
    padding: 10px 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 16px;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg fill='%23ffffff' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  }

  .btn {
    font-size: 0.95rem;
    padding: 12px 20px;
    letter-spacing: 0.5px;
  }

  .prediction-form {
    padding: 18px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .custom-alert {
    width: 90%;
    padding: 16px;
  }

  .custom-alert-message {
    font-size: 1rem;
  }

  .custom-alert-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}
