/* MIGRATED TO TAILWIND - PWA Install Modal styles
   Visibility toggling moved to tailwind-input.css
   Layout and styling now uses Tailwind utilities in index.html

.pwa-install-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  justify-content: center;
  align-items: center;
}

.pwa-install-modal.visible {
  display: flex;
}

.pwa-install-content {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px;
  max-width: 340px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}

.pwa-install-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  line-height: 1;
  padding: 5px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.pwa-install-close:hover {
  color: #333;
}

.pwa-install-icon {
  margin-bottom: 20px;
}

.pwa-install-icon img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pwa-install-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.pwa-install-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 24px;
}

.pwa-install-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pwa-btn {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
}

.pwa-btn-install {
  background-color: #4A90E2;
  color: white;
}

.pwa-btn-install:hover {
  background-color: #357ABD;
}

.pwa-btn-never {
  background-color: #F5F5F5;
  color: #666;
}

.pwa-btn-never:hover {
  background-color: #E8E8E8;
}

.pwa-btn-later {
  background-color: transparent;
  color: #4A90E2;
}

.pwa-btn-later:hover {
  background-color: #F0F7FF;
}
*/