/* your styles go here */

/* ==========================================================================
   App info bar – "New version coming soon" (dismissible, sticky)
   ========================================================================== */
.app-info-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: linear-gradient(135deg, #2c5282 0%, #2b6cb0 50%, #3182ce 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.app-info-bar--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.app-info-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.app-info-bar__icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  opacity: 0.95;
}

.app-info-bar__text {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.app-info-bar__text strong {
  font-weight: 600;
}

.app-info-bar__sub {
  font-weight: 400;
  opacity: 0.92;
}

@media (min-width: 576px) {
  .app-info-bar__sub::before {
    content: " — ";
    opacity: 0.7;
  }
}

@media (max-width: 575px) {
  .app-info-bar__inner {
    padding: 10px 12px;
    gap: 8px;
  }
  .app-info-bar__text {
    font-size: 0.875rem;
  }
  .app-info-bar__sub {
    display: block;
    margin-top: 2px;
    opacity: 0.9;
  }
  .app-info-bar__sub::before {
    content: none;
  }
}

.app-info-bar__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.app-info-bar__close:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.app-info-bar__close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}