/* PWA Install Banner Styles */
#installBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FF6B35;
  color: white;
  padding: 16px;
  display: none;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

#installBanner.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.install-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.install-banner-text {
  flex: 1;
}

.install-banner-text h4 {
  margin: 0 0 4px 0;
  font-weight: 600;
}

.install-banner-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.install-banner-buttons {
  display: flex;
  gap: 8px;
}

.install-banner-btn {
  background: white;
  color: #FF6B35;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.install-banner-btn:hover {
  background: #f0f0f0;
}

.install-banner-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.install-banner-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

/* Responsive styles */
@media (max-width: 768px) {
  .install-banner-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .install-banner-text {
    order: 2;
  }
  
  .install-banner-buttons {
    order: 1;
  }
}