.pwa-prompt-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000000;
  animation: fadeIn 0.25s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
}

.pwa-prompt-modal {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.625rem;
  align-items: center;
  font-size: 1.25rem;
  text-align: center;
  width: 400px;
  max-width: 100%;
  animation: slideUp 0.25s ease both;
  box-shadow:
    0 8px 32px rgba(56, 88, 233, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08);
}

.pwa-prompt-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  max-width: 100%;
  padding: 6px 20px;
  border: 1px solid #fbb22d;
  border-radius: 10px;
  background-color: #fbb22d;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.pwa-prompt-button:hover {
  border-color: #e29a13;
  background-color: #e29a13;
}

.pwa-prompt-dismiss {
  background-color: transparent;
  border-color: transparent;
  color: #31261e;
}

.pwa-prompt-dismiss:hover {
  border-color: #fbb22d;
  background-color: transparent;
}

@media (max-width: 575.98px) {
  .pwa-prompt-backdrop {
    justify-content: flex-end;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
