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%;
}
    html.dark .form-control, html.dark .form-select {
        color: #ffffff !important;
        background-color: #002865 !important;
        border-color: #ffffff !important;
    }



body {
    margin-bottom: 60px;
}

.item:active {
    filter: brightness(70%);
}
    @media print {
       
    }
@media print {
    /* Remove browser's default header and footer */
    @page {
        margin: 20mm 20mm 20mm 20mm; /* Adjust bottom margin for page numbers */
        size: auto;
    }

    body {
        margin: 0;
        padding: 0;
    }

    /* Hide elements not needed for printing */
    .no-print {
        display: none;
    }

    /* Custom page numbers at the bottom */
    @page :right {
        @bottom-center {
            content: "Page " counter(page) " of " counter(pages);
        }
    }

    @page :left {
        @bottom-center {
            content: "Page " counter(page) " of " counter(pages);
        }
    }
}
