.outer-wrapper {
    height: 100vh;
    display: flex;
}
.wrapper {
    width: 360px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 32px 0 rgb(0 0 0 / 20%);
    margin: auto;
}

.btn-wrapper {
    padding: 16px;
}

#myTable_wrapper {
    margin: 40px 8px 16px;
}


.notice {
    position: fixed;
    bottom: -40px;
    right: 16px;
    background: #242582;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    transition: bottom .4s linear;
}

.notice.top {
    bottom: 16px;
}

.delete-row-btn {
    background: #F20000;
    color: #ffffff;
    font-weight: 800;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
}

.delete-row-btn:hover {
    background: #C31111;
}

.status.pending {
    color: #C31111 !important;
}

.status.delivering {
    color: #EFB700 !important;
}

.status.done {
    color: #008450 !important;
}

#myTable_length, #myTable_filter {
    margin-bottom: 24px;
}

#myTable_length {
    float: right !important;
}

#myTable_filter {
    float: left !important;
}

.table-form {
    display: flex;
}

.form-control {
    width: unset;
    margin-right: 8px;
}

#myTable td {
    vertical-align: middle;
    font-size: 15px;
}

