.btns {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.15rem;
    padding: 5px 9px;
}
.btns:focus {
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 6%),
        0 0 0 3px rgb(100 150 200 / 50%);
}

.btn-confirm {
    border: 2px solid #78c484;
    color: #287434;
    background: #fff;
    padding: 4px 28px;
}

.btn-save {
    border: 2px solid #3fa833;
    color: #000;
    background: #fff;
    padding: 4px 28px;
}
.btn-cancel {
    border: 2px solid #E97071;
    color: #A82F2F;
    background: #fff;
    padding: 4px 28px;
}

input[type="checkbox"] {
    min-width: 30px;
    min-height: 30px;
}

input,
select {
    padding: 8px 15px;
    border-radius: 3px;
    outline: none;
    border: 1px solid #999;
    font-size: 1rem;
}

input.danger,
select.danger {
    border: 1px solid #700;
    color: #700;
    background: #ecca;
}

.btn-row {
    text-align: center;
    padding: 5px 0;
}

.backdrop {
    position: fixed;
    inset: 0;
    background: #020212b0;
    z-index: 100;
    display: grid;
    place-items: center;
}

.color-white {
    color: #fff;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s;
}
.fade-enter,
.fade-leave-to {
    opacity: 0;
}

.btns.btn-toggle {
    color: #fff;
    padding: 5px 9px;
    font-size: 1.6rem;
}

.o-submit-btn {
    background: #ff9000;
    color: #fff;
    border-radius: 10px;
    padding: 0.15em 1.85em;
    font-weight: 600;
    font-size: 1.3em;
    border: 1px solid #fff;
}

.applies-input {
    max-width: 200px;
    background: #a6d4f5;
    border: 1px solid #496f8a;
    box-shadow: 0 0 0 1px #9db5c7;
    border-radius: 5px;
    padding: 3px 10px;
}
.applies-input.long {
    max-width: auto;
    flex: 1;
}

.place-center {
    height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
}
.section-container{
    padding: 1%;
}
.table-container {
    margin: 0 1%;
    height: 65vh;
    overflow-y: auto;
    width: 100%;
}
.table-container::-webkit-scrollbar {
    width: 10px;
}
.table-container::-webkit-scrollbar-track {
    box-shadow: transparent;
}
.table-container::-webkit-scrollbar-thumb {
    background-color: rgba(139, 139, 139, 0.4);
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.table thead {
    position: sticky;
    top: 0;
}
.table-header tr th {
    background: #f5f5f5;
    text-align: left;
}

.table tr > * {
    padding: 10px;
}

.table-header tr th:first-child {
    border-radius: 10px 0 0 10px;
}
.table-header tr th:last-child {
    border-radius: 0 10px 10px 0;
}
.table-body tr > * {
    border-bottom: 1px solid #aee2cf;
}
.table-no-data{
    text-align: center;
    color: #666;
    height: 4rem;
}
.swal2-title{
    color: #33c3b9 !important;
}

.phone{
    display: none;
}
@media (max-width: 1151px) {
    .table {
        background: #fff;
        overflow: hidden;
        min-width: 100%;
    }

    .table tr:nth-of-type(2n) {
        background: #f5f5f5;
    }

    .table th,
    .table td {
        margin: 0;
        padding: 0.3rem;
        border-bottom:1px solid #eee;
        text-align: left !important;
    }

    .table th {
        display: none;
    }

    .table td {
        display: block;
    }

    .table td[data-th=""]:before {
        content: none;
        font-weight: bold;
        width: 7.5em;
        display: inline-block;
    }

    .table td:not([data-th=""]):before {
        content: attr(data-th);
        font-weight: bold;
        width: 7.5em;
        display: inline-block;
    }

    .table th,
    .table td:before {
        color: #fff;
        font-weight: bold;
        background: #33c3b9;
        padding: 0.4rem;
        margin-right: 0.5rem;
    }
    
    .pc{
        display: none !important;
    }
    .phone{
        display: inline-block;
    }
}