/* PWA Install Banner */
.pwa-install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary, #f5f5f5);
  border-top: 2px solid var(--link-color, #1976d2);
  box-shadow: 0 -2px 10px var(--card-shadow, rgba(0, 0, 0, 0.1));
  z-index: 9999;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.pwa-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pwa-icon {
  font-size: 32px;
}

.pwa-text {
  flex: 1;
  min-width: 200px;
}

.pwa-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.pwa-text p {
  margin: 0;
  font-size: 0.9em;
  color: var(--text-secondary);
}

.pwa-actions {
  display: flex;
  gap: 8px;
}

@media (max-width: 768px) {
  .pwa-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .pwa-actions {
    width: 100%;
    justify-content: center;
  }
}
