/*
 * Styles for the installation prompt. The prompt appears fixed near the
 * bottom of the screen and provides contextual instructions for Android
 * and iOS users to install the Sushi Corner app on their home screen.
 */

#installPromptContainer {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: none; /* hidden by default; shown via JS */
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

#installPromptContainer h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

#installPromptContainer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

#installPromptContainer button {
  background-color: #E50914;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

#installPromptContainer button:hover {
  background-color: #b20710;
}

/* Close button */
#installPromptClose {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #aaa;
}

#installPromptClose:hover {
  color: #fff;
}