.mask {
    position: absolute;
    background-size: cover;
    background-position: center center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.blur {
    box-shadow: inset 0px 0px 2px var(--bs-border-color-translucent);
    backdrop-filter: saturate(200%) blur(30px);
    background-color: rgba(var(--bs-secondary-bg-rgb), 0.8) !important;
}

input[readonly],
textarea[readonly] {
    background-color: rgba(var(--bs-secondary-bg-rgb), 0.8) !important;
}

.stretch-card {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: stretch;
    justify-content: stretch;
}

.stretch-card>.card {
    width: 100%;
    min-width: 100%;
}

#auth-right img {
    opacity: 0.6;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cursor-move {
    cursor: move !important;
}

.dataTable-wrapper .dataTable-top /* .dataTable-search */{
    display: none !important;
}

/* Card Modern */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Modern Table */
.table thead th {
    font-weight: 600;
    font-size: 16px;
    color: #6c757d;
}

.table tbody tr {
    border-radius: 12px;
    transition: 0.2s ease;
}

.table td {
    vertical-align: middle;
    font-size: 14px;
}
.table:not(.table-borderless) td {
    border-top: 1px solid #f1f1f1;
}

@media screen and (max-width: 1199px) {
    html[data-bs-theme=dark] .layout-horizontal .main-navbar {
        background-color: #22223c !important;
    }
}