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: 0 !important;
}

    .input-validation-error {
        border: 1px solid red;
        box-shadow: 0 16px 26px -10px rgb(156 0 0 / 56%), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgb(156 0 0 / 20%);
    }

    /* Focus effect (optional) */
    .form-control:focus {
        border-color: #66afe9 !important; /* Light blue color on focus */
        outline: none;
        box-shadow: 0 16px 26px -10px rgba(0, 82, 156, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 82, 156, 0.2) !important;
    }

    table {
        font-size: 13px !important;
    }

        table thead tr td {
            font-weight: 600;
        }

    .table-dark td {
        border: 1px solid white;
    }

    a {
        text-decoration: none;
    }

td {
    border: 1px solid #c7c7c7;
}

@media print {
    @page {
        margin: 20px; /* Removes default header and footer margins */
    }

    /*body {
        margin: 0;
        padding: 0;
    }*/
    /* Hide header and footer elements when printing */
    header, footer {
        display: none;
    }
}
