/* Bootstrap 3 → 5 CSS compatibility shim (Epic 34)
   Provides Bootstrap 3 classes that were removed in Bootstrap 5 but are still
   used in Guard Tour markup. These will be migrated incrementally and this
   shim can be removed when no references remain. */

/* form-group spacing (Bootstrap 5 removed .form-group entirely)
   Still used extensively in Event.cshtml, Admin pages, Login, DynamicForms, etc. */
.form-group {
    margin-bottom: 1rem;
}

/* well → card-like appearance (Bootstrap 5 removed .well)
   Check if still used; keep as safety net. */
.well {
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
}

/* hidden-lg responsive utility (Bootstrap 5 replaced with d-lg-none) */
@media (min-width: 1200px) {
    .hidden-lg { display: none !important; }
}
