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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Apply Calibri font site-wide */
body, nav, footer, h1, h2, h3, h4, h5, h6, p, a {
    font-family: Calibri, sans-serif !important;
}

/* Set navbar background to green */
.navbar {
    background-color: #198754 !important; /* Bootstrap green shade */
}

/* Make footer background green */
.bg-green {
    background-color: #198754 !important;
}

/* Adjust logo size and alignment */
.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

/*----------------------------------------------------------------------------------------------*/
/*------------------------------------------Modified----------------------------------------------------*/
/*----------------------------------------------------------------------------------------------*/
.soft-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.06)
}

.card-hover {
    transition: .2s transform,.2s box-shadow
}

    .card-hover:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 40px rgba(0,0,0,.08)
    }

.icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.bg-mint {
    background: #e8f7ef
}

.text-mint {
    color: #188c5a
}

.bg-amber {
    background: #fff3cd
}

.text-amber {
    color: #b58100
}

.soft-pill {
    border-radius: .75rem;
    font-weight: 600
}

.bullet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: .5rem
}
/* wwwroot/css/site.css (additions) */
.border-200 {
    border-color: #e9ecef !important;
}

.bg-light-subtle {
    background: #f8f9fa;
}

.bg-warning-subtle {
    background: #fff3cd;
}
<style >
/* Give the form breathing room so the sticky bar doesn't overlap content */
.form-with-sticky {
    padding-bottom: 6rem;
}

/* Sticky action bar */
.action-bar {
    position: sticky;
    bottom: 0;
    z-index: 1030; /* above cards */
    background: var(--bs-body-bg);
    padding: .75rem 1rem;
    box-shadow: 0 -0.5rem 1rem rgba(0,0,0,.06);
    /* Mobile safe area (iOS) */
    padding-bottom: max(env(safe-area-inset-bottom), .75rem);
}

    /* Match your rounded aesthetic */
    .action-bar,
    .action-bar .btn {
        border-radius: .75rem;
    }


.select2-container {
    width: 100% !important;
}



