#app {
    padding: 0 20px;
}

ul {
    list-style: none;
}

h1 {
    text-align: center;
    margin: 0 auto;
    padding: 10px;
}

.hidden {
    display: none;
}

.close {
    cursor: pointer;
    z-index: 99999;
}

nav a {
    cursor: pointer;
}

.cmod .content {
    height: 100%;
}

pre {
    /* wrap long text and urls */
    white-space: pre;
    /* CSS 2.0 */
    white-space: pre-wrap;
    /* CSS 2.1 */
    white-space: pre-line;
    /* CSS 3.0 */
    white-space: -pre-wrap;
    /* Opera 4-6 */
    white-space: -o-pre-wrap;
    /* Opera 7 */
    white-space: -moz-pre-wrap;
    /* Mozilla */
    word-wrap: break-word;
    /* IE 5+ */
}

.cmod pre {
    /* wrap long text and urls */
    white-space: pre;
    /* CSS 2.0 */
    white-space: pre-wrap;
    /* CSS 2.1 */
    white-space: pre-line;
    /* CSS 3.0 */
    white-space: -pre-wrap;
    /* Opera 4-6 */
    white-space: -o-pre-wrap;
    /* Opera 7 */
    white-space: -moz-pre-wrap;
    /* Mozilla */
    word-wrap: break-word;
    /* IE 5+ */
    height: 100%;
    width: 100%;
    overflow: auto;
    color: #000;
    display: block;
    position: relative;
}

table pre {
    max-height: 90px;
    overflow: hidden;
}

table td {
    max-width: 200px;
}

table pre.full {
    max-height: 100vh;
    overflow: visible;
}

.cmod {
    display: none;
    position: fixed;
    height: 98vh;
    width: 90vw;
    padding: 5%;
    top: 1vh;
    left: 5vw;
    text-align: center;
    z-index: 10000;
    background: #fff;
    border: 1px solid #000;
    box-shadow: 0px 0px 10px #000;
    border-radius: 5px;
}

.cmod ul {
    list-style: none;
}

.cmod ul li {
    padding: 10px;
    border-bottom: 1px #ccc solid;
    cursor: pointer;
}

.selected {
    background: var(--primary);
}

.emp_line {
    border-top: 1px solid #ccc;
    padding: 15px 0 0 0;
}

.emp_line:last-child {
    border-bottom: 1px solid #ccc;
}

.emp_name {
    font-size: 18px;
    font-weight: 600;
    padding: 5px 0 0 0;
    text-align: center;
    background: var(--primary);
    border-radius: 5px;
    color: #fff;
    margin: 0 0 15px 0;
    box-shadow: 2px 2px 10px #515151;
}

.emp_time li {
    display: inline-block;
    padding: 5px;
    background: green;
    color: #fff;
    cursor: pointer;
    margin: 0 0 4px 0;
    border-radius: 5px;
}

.cmod .table {
    width: 50%;
    font-size: 21px;
    margin: 0 auto;
    text-align: left;
}

.pointer {
    cursor: pointer;
}

.apt_mdata>div {
    text-align: center;
    background: var(--gray);
    padding: 10px;
    border-radius: 5px;
    margin: 0 10px 10px;
    color: #fff;
    box-shadow: 2px 2px 10px #515151;
}

.fform {
    width: 30vw;
    margin: 0 auto;
}

.btn.btn-primary {
    width: 100%;
}

.btn {
    box-shadow: 2px 2px 10px #515151;
}

.shadow {
    box-shadow: 2px 2px 10px #515151 !important;
}

#closed {
    background: rgb(177, 0, 0);
}

#closed.odd {
    background: rgb(233, 0, 0);
}

.navbar-dark .navbar-nav .nav-link {
    /* color: #000 !important; */
}

ul.dropdown-menu {
    background: #343a40;
}

@media only screen and (max-width: 768px) {
    .cmod ul {
        margin: 0 auto;
    }
    .cmod .table {
        width: 100%;
    }
    .emp_name {
        text-align: center;
        margin: 0 0 5px 0;
    }
    .apt_mdata>div {
        width: 100%;
    }
    .fform {
        width: 100%;
        margin: 0 auto;
    }
}