html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



#statusMessage { display: none; /* Initially hidden */ position: fixed; /* Positioning relative to the viewport */ left: 50%; top: 50%; transform: translate(-50%, -50%); /* Centering the div */ z-index: 1000; /* Ensure it's above other elements */ background-color: white; padding: 20px; border: 1px solid #ddd; box-shadow: 0px 0px 10px rgba(0,0,0,0.5); text-align: center; }

/* Optional: Full-screen overlay background */
.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */ z-index: 999; /* Below the popup but above other elements */ }