@media only screen and (max-width: 576px) {
    .text-xs-center {
        text-align: center !important;
    }
    
    .dashboard-input {
        max-width: 75%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 768px) {
    .dashboard-input {
        max-width: 75%;
        margin: 0 auto;
    }
    
    .dashboard-table {
        border: 0;
    }

    .dashboard-table caption {
        font-size: 1.3em;
    }

    .dashboard-table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .dashboard-table tr {
        display: block;
        margin-bottom: .625em;
        box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%), 0 2px 6px 0 rgb(206 206 238 / 54%);
    }

    .dashboard-table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: 1em;
        text-align: right;
    }
    .dashboard-table td:last-child:not(.time-history) {
        text-align: center;
        font-size: 1.2em;
        border-bottom: 0;
    }

    .dashboard-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .action-menu-trigger {
        margin-right: 1.5rem;
    }
}

@media only screen and (min-width: 576px){
    .modal-dialog {
        max-width: 576px;
        margin: 1.75rem auto;
    }
}