@media only screen and (max-width: 760px), (min-device-width: 802px) and (max-device-width: 1020px) {
    /* Force table to not be like tables anymore */
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    .empty {
        display: none;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    th {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border: 1px solid #ccc;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    /*
Label the data
*/
    td:nth-of-type(1):before {
        content: "Sunday";
    }
    td:nth-of-type(2):before {
        content: "Monday";
    }
    td:nth-of-type(3):before {
        content: "Tuesday";
    }
    td:nth-of-type(4):before {
        content: "Wednesday";
    }
    td:nth-of-type(5):before {
        content: "Thursday";
    }
    td:nth-of-type(6):before {
        content: "Friday";
    }
    td:nth-of-type(7):before {
        content: "Saturday";
    }
}

/* Smartphones (portrait and landscape) ----------- */

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    body {
        padding: 0;
        margin: 0;
    }
}

/* iPads (portrait and landscape) ----------- */

@media only screen and (min-device-width: 802px) and (max-device-width: 1020px) {
    body {
        width: 495px;
    }
}

@media (min-width: 641px) {
    table {
        table-layout: fixed;
    }
    td {
        width: 33%;
    }
}

.row {
    margin-top: 20px;
}

.today {
    background: yellow;
}

/* .slot {
    min-height: 180px;
    min-width: 200px;
} */

/* .schedule {
    display: flex;
} */
/* 
.row {
    padding: 0 50px;
    min-width: 100px;
} */

/* .test {
    height: 130px;
    width: 200px;
} */

.hidden {
    display: none;
}

/* Signin Form */
.form-signin {
    max-width: 330px;
    padding: 15px;
}

.form-signin .form-floating:focus-within {
    z-index: 2;
}

.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
