html {
    font-size: 14px;
}

@media (min-width: 730px) {
    html {
        font-size: 16px;
    }

    .home-button {
        color: white;
        background-size: 110px;
        width: 110px;
        height: 110px;
    }
}

@media screen and (max-width:730px) {
    .btn-group {
        display: flex;
        flex-direction: column;
    }

    .home-button {
        color: white;
        background-size: 310px;
        width: 310px;
        height: 310px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.img-responsive {
    width: 100%;
    height: auto;
    max-width: 300px; /* Optional: set a max width for larger screens */
}

.dropdown-menu {
    max-height: 60vh;
    overflow-y: auto;
    z-index: 2000;
}

@media print {
    header,
    footer,
    .navbar,
    .site-footer,
    .d-print-none,
    .print-hide {
        display: none !important;
    }

    body {
        margin: 0 !important;
    }

    table {
        page-break-inside: auto;
    }

    tr {
        page-break-inside: avoid;
        page-break-after: auto;
    }

    thead {
        display: table-header-group;
    }

    tfoot {
        display: table-footer-group;
    }
}
