.clean-table {
    width: 100%;
}

.clean-table>thead {
    height: 30px;
    border-bottom: 1px solid var(--color-gray-300);
}

.clean-table>thead>tr>th {
    font-weight: 900;
    padding: 8px;
}

.clean-table>tbody>tr>td {
    height: 5rem;
    vertical-align: middle;
    padding: 8px;
}

.btn-wd {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    min-width: auto;
    /* aspect-ratio: 1; */
    border-radius: 0.5rem;
    border: solid 1px #000;
    color: white;
    text-wrap: nowrap;
    padding: 0px 8px;
}

.btn-wd-clean {
    padding: 8px;
    border: none;
    background-color: transparent;
    color: black;
}

.btn-wd-default {
    border-color: var(--color-zinc-300);
    background-color: white;
    color: black;
}

.btn-wd-default:hover {
    background-color: var(--color-zinc-300);
}

.btn-wd-primary {
    background-color: #554FC7;
    border-color: #4843A9;
}

.btn-wd-primary:hover {
    background-color: #4843A9;
}

.switch-container {
    width: 30px;
    height: auto;
    aspect-ratio: 51px/31px;
    position: relative;
}

.checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.switch {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 100%;
    padding: 2px;
    border-radius: 16px;
    background-color: #e9e9eb;
    transition: all 0.2s ease-out;
    cursor: pointer;
}

.slider {
    width: calc(50% + 1.5px);
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.checkbox:checked+.switch {
    background-color: #2F72FF;
    justify-content: end;
}

.input-group .input-group-btn {
    height: 100%;
}

.input-group .input-group-btn>button {
    height: 34px;
    min-width: auto;
    aspect-ratio: 1;
    background-color: #FFF;
    border: solid 1px #d5d5d5;
    border-left: none;
    font-size: 1.5rem;
    /* display: flex;
    justify-content: center; */
    align-items: center;
}

.input-group > *:first-child {
    border-radius: 5px 0 0 5px;
}

.input-group > *:last-child,
.input-group .input-group-btn > button:last-child {
    border-radius: 0 5px 5px 0;
}

.input-group .input-group-btn>button:hover {
    background-color: var(--color-zinc-300);
}

.invalid-feedback {
    display: none;
    height: 100%;
    color: red;
    width: 100%;
}

.nav.nav-pills>li.active>a {
    background-color: var(--color-wd-primary) !important;
}

.nav.nav-pills>li>a:hover {
    background-color: var(--color-wd-primary-hover) !important;
    color: white
}