/* Estilos para el prompt de instalación de PWA */
.install-prompt {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  animation: slideUp 0.3s ease-out;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.install-content {
  width: 100%;
  max-width: 600px;
}

.install-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.install-logo {
  width: 48px;
  height: 48px;
  margin-right: 12px;
  border-radius: 8px;
}

.install-title {
  flex: 1;
}

.install-title h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  color: #333;
}

.install-title p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.install-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-install {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.btn-dismiss {
  background-color: transparent;
  color: #666;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* Estilos para instrucciones de instalación en iOS */
.ios-install-prompt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.ios-install-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 350px;
}

.ios-install-content h3 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
}

.ios-install-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.ios-install-content li {
  margin-bottom: 10px;
}

.ios-share-icon {
  font-size: 20px;
  vertical-align: middle;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
