/* Construction Banner Styles */
.construction-banner {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #78350f;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.construction-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.construction-banner-icon {
  flex-shrink: 0;
}

.construction-banner-icon svg {
  width: 24px;
  height: 24px;
  color: #78350f;
}

.construction-banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.construction-banner-content strong {
  font-size: 16px;
  font-weight: 700;
  color: #78350f;
}

.construction-banner-content span {
  font-size: 14px;
  color: #92400e;
  line-height: 1.4;
}

.construction-banner-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.construction-banner-close:hover {
  background-color: rgba(120, 53, 15, 0.1);
}

.construction-banner-close svg {
  width: 20px;
  height: 20px;
  color: #78350f;
}

.construction-banner.hidden {
  display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .construction-banner-content {
    gap: 2px;
  }
  
  .construction-banner-content strong {
    font-size: 14px;
  }
  
  .construction-banner-content span {
    font-size: 12px;
  }
  
  .construction-banner-icon svg {
    width: 20px;
    height: 20px;
  }
}
