
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}



adv-search-area form {
    padding: 0 20px;
    background: var(--color-white);
    height: 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(146, 153, 184, 0.031372549);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    width: 280px;
}
.adv-search-area form img,
.adv-search-area form svg {
    width: 20px;
    color: var(--color-gray);
}
.adv-search-area form .form-control {
    padding: 10px 13px;
    line-height: 25px;
    height: 36px;
}
.adv-search-area form .form-control::placeholder {
    color: var(--body-color);
}

.adv-table-table__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.adv-table-table__button a {
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 93px;
    padding-right: 35px;
    height: 40px;
    border-radius: 6px;
}
.adv-table-table__button a:after {
    font-weight: 900;
    font-size: 12px;
}
.adv-table-table__button .table-responsive {
    overflow-y: hidden;
}

.footable-filtering + tr {
    background-color: var(--bg-normal);
}

#filter-form-container .form-inline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5px;
}
@media only screen and (max-width: 991px) {
    #filter-form-container .form-inline {
        margin-bottom: 15px;
    }
}
#filter-form-container label {
    font-size: 14px;
    line-height: 1.7857142857;
    font-weight: 400;
    color: var(--color-gray-x);
    text-transform: capitalize;
}
@media only screen and (max-width: 575px) {
    #filter-form-container .form-group {
        width: 100%;
        flex-wrap: wrap;
    }
    #filter-form-container .form-group select {
        width: 100%;
    }
    #filter-form-container .form-group:after {
        top: auto;
        bottom: 7%;
    }
}

.orderDatatable_actions {
    min-width: 130px;
    max-width: 100%;
    justify-content: flex-end;
  float: inline-start;
}

.orderDatatable_actions li {
  list-style: none;
}
.orderDatatable_actions li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orderDatatable_actions li button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}
.orderDatatable_actions li a.view:hover {
    background: rgba(var(--color-primary-rgba), 0.10);
}

.orderDatatable_actions li a.view:hover svg,
.orderDatatable_actions li a.view:hover i {
    color: var(--color-primary);
}

.orderDatatable_actions li a.edit:hover {
    background: rgba(var(--color-info-rgba), 0.10);
}

.orderDatatable_actions li a.edit:hover svg,
.orderDatatable_actions li a.edit:hover i {
    color: var(--color-info);
}

.orderDatatable_actions li a.remove:hover {
    background: rgba(var(--color-danger-rgba), 0.10);
}

.orderDatatable_actions li a.remove:hover svg,
.orderDatatable_actions li a.remove:hover i {
    color: var(--color-danger);
}

.orderDatatable_actions li a img,
.orderDatatable_actions li a svg {
    width: 16px;
    color: var(--color-lighten);
}

.orderDatatable_actions li a i {
    color: var(--color-lighten);
    font-size: 18px;
}

.notyf__toast {
    max-width: 400px !important;
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 10px 20px !important;
}
.notyf__ripple {
    width: 600px !important;
}

.modal-xl {
    max-width: 1540px !important;
}

#swal2-html-container {
    overflow: hidden !important;
}
.az-error-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}
.az-error-wrapper h1, .az-error-wrapper .h1 {
    line-height: 1;
    font-size: 150px;
    font-weight: 700;
    color: #1c273c;
}
.az-error-wrapper h2, .az-error-wrapper .h2 {
    font-weight: 500;
    color: #3b4863;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}
.az-error-wrapper h6, .az-error-wrapper .h6 {
    margin-bottom: 40px;
    font-size: 14px;
}
.az-error-wrapper .btn, .az-error-wrapper .sp-container button, .sp-container .az-error-wrapper button {
    border-width: 2px;
    font-weight: 700;
}


#loadingScreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}
#loadingScreen > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
#loadingScreen > div > i{
    font-size: 60px;
    font-weight: 700;
    color: #fff;
}

#loadingScreen > div > span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: block;
}


@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}


/*!* form control *!

.form-control.  {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control. :focus {
    border-color: #3194db;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}*/


/* tabs */
.nav-tabs {
    border-bottom: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
    padding: 0 15px;
    display: flex;
    justify-content: center;
}

.nav-tabs .nav-item {
    margin-bottom: -2px;
    transition: transform 0.3s ease;
}

.nav-tabs .nav-item:hover {
    transform: translateY(-2px);
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 20px;
    color: #6c757d;
    background-color: #e9ecef;
    margin: 5px;
    padding: 10px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background-color: #dee2e6;
    color: #495057;
}

.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #3194db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-tabs .nav-link.active:hover {
    background-color: #0056b3;
}

.nav-tabs .nav-item:last-child .nav-link {
    border-radius: 20px !important;
}

.nav-tabs .nav-item:first-child .nav-link {
    border-radius: 20px !important;
}


/* Buttons */

/*

.btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
*/


/* Menu */

/*

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

.nav-link i {
    margin-right: 10px;
}

.nav-link:hover {
    background-color: #f8f8f8;
}

.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu ul .nav-item {
    padding: 5px 15px;
}

.submenu ul .nav-item:hover {
    background-color: #f8f8f8;
}

.nav-item:hover .submenu {
    display: block;
}

*/

/* table */

.userDatatable {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/*
.table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.table thead {
    background-color: #646567;
    color: #fff;
}

.table thead th {
    border-bottom: none;
    padding: 15px;
}
*/

.userDatatable-header {
    font-weight: bold;
}

.userDatatable-title {
    font-size: 16px;
}

.userDatatable-content {
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 5px;
}

.orderDatatable_actions {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}



.orderDatatable_actions a, .orderDatatable_actions button {
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.orderDatatable_actions .edit {
    color: #28a745;
}

.orderDatatable_actions .remove {
    color: #dc3545;
}

.orderDatatable_actions .open-modal {
    color: #3194db;
}

.orderDatatable_actions .btn-secondary {
    color: #6c757d;
}

.orderDatatable_actions .btn-primary {
    color: #3194db;
}

.orderDatatable_actions .btn-danger {
    color: #dc3545;
}

.orderDatatable_actions .btn-success {
    color: #28a745;
}

.orderDatatable_actions a:hover, .orderDatatable_actions button:hover {
    background-color: #f8f8f8;
}

.pagination {
    margin-top: 20px;
    justify-content: center;
    gap: 5px;
}

.pagination .page-link {
    color: #3194db;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: background-color 0.3s ease;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link:hover {
    background-color: #f8f8f8;
}

.pagination .active .page-link {
    color: #fff;
    background-color: #3194db;
    border-color: #3194db;
}

.page-item:first-child .page-link {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.page-item:last-child .page-link {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}


.table-striped {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*.table-striped thead {
    background-color: #646567;
    color: #fff;
}

.table-striped thead th {
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.table-striped tbody td {
    padding: 15px;
    background-color: #fff;
    color: #646567;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.table-striped tbody tr:last-child td {
    border-bottom: none;
}

.table-striped tbody tr:hover {
    background-color: #f8f8f8;
}*/
.dataTables_length, .dataTables_filter {
    margin-bottom: 10px;
}

.dataTables_length label, .dataTables_filter label {
    font-size: 12px;
    color: #646567;
}

.dataTables_length select, .dataTables_filter input {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 5px;
    font-size: 12px;
}

.dataTables_paginate {
    float: right;
    margin-top: 10px;
}

.dataTables_paginate a {
    margin: 0 5px;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #646567;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 12px;
}

.dataTables_paginate a:hover {
    background-color: #5a5c5e;
}

.dataTables_paginate .paginate_button.current, .dataTables_paginate .paginate_button.current:hover {
    background-color: #3194db;
}


/* Modal */

.modal-content {
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 2px solid #e9ecef;
    padding: 24px;
    background-color: #ffffff;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
}

.modal-body .form-group {
    margin-bottom: 20px;
}
/*
.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-description {
    font-size: 16px;
    color: #666;
}*/

.menu-title {
    text-transform: uppercase;

}
.submenu ul li a span {
text-transform: uppercase;
}

.swal2-container {
    position: fixed !important;
    z-index: 9999 !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

