/* Mobile helpers shared across pages */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 900px) {
    .table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 760px;
    }
}

@media (max-width: 768px) {
    input,
    select,
    textarea,
    button {
        font-size: 16px !important;
    }

    .box,
    .login-box {
        width: 100% !important;
        margin: 0 !important;
    }

    .cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .cards {
        grid-template-columns: 1fr;
    }
}
