html, body {
  height: 100%;
  overflow: auto;
}

.min-vh-100 {
  min-height: 100dvh !important;
}

.btn-sirpi{
font-size:1.2rem;
padding:20px;
width:100%;
max-width:500px;
height:auto;
min-height:80px;
border-radius:12px;
}

body.navbar-visible {
  padding-top: 80px;
}

@media (max-width: 576px){
  .btn-sirpi{
    font-size:1rem;
    min-height:100px;
    padding:16px;
  }
}
#exitToast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  background: rgba(33, 37, 41, 0.94);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 3000;
  white-space: nowrap;
}

#exitToast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
