/* =================================== */
/* animations.css */
/* =================================== */

/* Announced tag */
  .ze-announced-tag { font-size:10px; font-weight:600; color:#00E5AA; text-align:center; white-space:nowrap; letter-spacing:0.3px; position:absolute; top:-18px; left:50%; transform:translateX(-50%); }
  
/* ===== SMOOTH TRANSITIONS ===== */
  .ze-wrap, .ze-hero, .ze-calendar-section, .ze-faq-section, .ze-cta-section { transition:background 0.4s ease; }
  .ze-calendar-grid, .ze-month-list, .ze-day, .ze-ml-day-group, .ze-ml-detail-btn, .ze-legend, .ze-legend-item, .ze-filter-pill, .ze-month-tab, .ze-market-selector, .ze-view-toggle, .ze-results-table-wrap { transition:background 0.35s ease, border-color 0.35s ease, color 0.35s ease; }

  
/* Loading Spinner */
  .ze-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(100, 116, 139, 0.1);
    border-top-color: #6b7280;
    border-radius: 50%;
    animation: zeSpin 0.8s linear infinite;
  }

  @keyframes zeSpin {
    to { transform: rotate(360deg); }
  }

  
/* Calendar loading/empty placeholder */
  .ze-cal-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
  }
  .ze-cal-placeholder-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .ze-cal-placeholder-icon svg { width: 30px; height: 30px; stroke: rgba(0,0,0,0.18); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .ze-cal-placeholder-title {
    font-size: 17px;
    font-weight: 700;
    color: rgba(0,0,0,0.55);
    margin-bottom: 8px;
  }
  .ze-dark .ze-cal-placeholder-icon { background: rgba(255,255,255,0.05); }
  .ze-dark .ze-cal-placeholder-icon svg { stroke: rgba(255,255,255,0.2); }
  .ze-dark .ze-cal-placeholder-title { color: rgba(255,255,255,0.5); }

/* Logo fallback circle */
.ze-logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  border-radius: inherit;
}
