/* Reserved for extracted section CSS. The original cascade is preserved in css/app.css. */


/* Eventi — loading + errore */
.gt7-ev-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 220px;
  padding: 32px 20px;
  text-align: center;
  color: #aab;
}
.gt7-ev-loading-title {
  font-size: 15px;
  font-weight: 600;
  color: #c8d0dc;
  letter-spacing: 0.02em;
}
.gt7-ev-progress {
  width: min(320px, 86vw);
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.gt7-ev-progress-bar {
  height: 100%;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
  background-size: 200% 100%;
  animation: gt7EvSlide 1.1s ease-in-out infinite, gt7EvShine 1.4s linear infinite;
}
@keyframes gt7EvSlide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
@keyframes gt7EvShine {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.gt7-ev-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 240px;
  padding: 36px 20px;
  text-align: center;
}
.gt7-ev-error-icon { font-size: 28px; }
.gt7-ev-error-title {
  color: #f87171;
  font-size: 17px;
  font-weight: 700;
}
.gt7-ev-error-detail {
  color: #9aa3b2;
  font-size: 13px;
  max-width: 420px;
  line-height: 1.45;
  word-break: break-word;
}
.gt7-ev-retry {
  margin-top: 6px;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: #111;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 4px 18px rgba(251, 191, 36, 0.25);
}
.gt7-ev-retry:active { transform: scale(0.98); }

.es2-action-btn.is-busy,
.btn-prenota.is-busy {
  cursor: wait !important;
  filter: grayscale(0.3);
}

