#logged-worked-time-table {
    background-color: #DBE7EB;
}

@media (min-width: 992px) {
    #logged-worked-time-table {
        height: calc(100vh - 66px); /* 66px is the height of the .navbar and this calculation is needed to disable vertical scroll on large screens */
        overflow-y: scroll;
    }
}

@media (max-height: 1088px) {
    #logged-worked-time-table {
        height: 1088px; /* 1088px is the height of the #insert-hours-form and .navbar*/
        overflow-y: scroll;
    }
}

#logged-worked-time-table th {
    background: #B3CED6;
}

#logged-worked-time-table td {
    background: #DBE7EB;
}

#insert-hours-form form {
    width: 100%;
}

@media (min-width: 1200px) {
    #insert-hours-form form {
        width: 75%;
    }
}