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;
}

/* Global override for primary buttons */
.btn-primary {
    background-color: #2a9d8f !important;
    border-color: #24867a !important; /* slightly darker for border */
}

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: #24867a !important; /* darker on hover */
        border-color: #1f7369 !important;
    }

    .btn-primary:active {
        background-color: #1f7369 !important;
        border-color: #1a6158 !important;
    }

/* Outline button using the same brand color */
.btn-outline-primary {
    color: #2a9d8f !important;
    border-color: #2a9d8f !important;
}

    .btn-outline-primary:hover,
    .btn-outline-primary:focus {
        background-color: #2a9d8f !important;
        color: white !important;
        border-color: #24867a !important;
    }

    .btn-outline-primary:active {
        background-color: #1f7369 !important;
        border-color: #1a6158 !important;
        color: white !important;
    }

/* Global nav-link color override */
.nav-link {
    color: #2a9d8f !important;
}

    .nav-link:hover,
    .nav-link:focus {
        color: #24867a !important; /* slightly darker on hover */
    }

/* Global link color (applies to all <a> tags) */
a {
    color: #2a9d8f;
}

    a:hover,
    a:focus {
        color: #24867a; /* slightly darker shade for hover/focus */
    }