* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Logo circle */
.logo-circle {
  padding: 0.55rem;
  background: linear-gradient(135deg, #facc15, #f97316);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(248, 181, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card */
.lt-card {
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

/* Tabs */
.lt-tab {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.9);
  color: #4b5563;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.lt-tab:hover {
  background: #facc15;
  color: #111827;
  border-color: transparent;
}

.lt-tab-active {
  background: #f97316;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

/* Sections visibility */
.lt-section {
  display: none;
}

.lt-section-active {
  display: block;
}

/* Empty ad slots */
.ad-slot {
  background: #fff7ed;
  border: 1px dashed rgba(248, 181, 0, 0.7);
  border-radius: 0.9rem;
  min-height: 40px;
}

/* Airtable loading overlay */
.iframe-wrap {
  position: relative;
}

.iframe-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;              /* smaller now */
  color: #64748b;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.95));
  border-radius: 0.75rem;
  z-index: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.iframe-wrap.iframe-loaded .iframe-loader {
  opacity: 0;
  visibility: hidden;
}
