.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;
}

.bg-tma-red {
    background: #a70237;
}

.bg-tma-grey {
    background: #e8e9ea;
}

.header-logo {
    width: 50%;
}

/* Change the default border color to a darker shade (e.g., a dark gray or black) */
.form-check-input {
    border: 2px solid #333; /* A dark gray color */
}

/* Ensure the border color remains dark when the input is focused */
.form-check-input:focus {
    border-color: #000; /* Black border on focus */
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25); /* Optional: Adjust the focus glow color/shadow */
}

/* Ensure the checked state also has the dark border, if needed */
.form-check-input:checked {
    border-color: #000;
}

@media print {
    .bg-tma-grey {
        background: #fff;
    }
}