@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* #region Global Styles */

* {
    font-family: 'Inter', sans-serif !important;
}

body {
    background-color: rgba(243, 244, 246, 1) !important;
}

.bg-dark {
    background-color: #1C1D21 !important;
}

/* #endregion */

/* #region Button Styles */

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: all 0.15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: rgba(38, 178, 227, 1) !important;
    border-color: rgb(34, 168, 212) !important;
}

.btn-primary:hover {
    color: rgb(34, 168, 212) !important;
    background-color: transparent !important;
    border-color: rgb(34, 168, 212);
}

.btn-primary:focus,
.btn-primary:active {
    color: #fff;
    background-color: rgb(34, 168, 212);
    border-color: rgb(33, 147, 186);
    box-shadow: 0 0 0 0.1rem rgb(117, 221, 255);
}

.btn-primary:disabled {
    background-color: rgb(81, 201, 241);
    border-color: rgb(44, 162, 202);
    opacity: 0.65;
}

.btn-danger {
    color: #fff;
    background-color: #ff4800ee;
    border-color: #ff4800ee;
}

.btn-danger:hover {
    color: #fff;
    background-color: transparent;
    border-color: #ff4800ee;
    color: #ff4800ee;
}

.btn-danger:focus,
.btn-danger:active {
    color: #fff;
    background-color: #ff4800ee;
    border-color: #ff4800ee;
    box-shadow: 0 0 0 0.1rem rgb(117, 221, 255);
}

.btn-danger:disabled {
    background-color: #ff4800ee;
    border-color: #ff4800ee;
    opacity: 0.65;
}

.btn-warning {
    color: #fff !important;
    background-color: rgba(244, 142, 79, 1) !important;
    border-color: rgb(228, 127, 64) !important;
}

.btn-warning:hover {
    color: #fff;
    background-color: transparent !important;
    border-color: rgb(228, 127, 64) !important;
    color: rgb(228, 127, 64) !important;
}

.btn-warning:focus,
.btn-warning:active {
    color: #fff;
    background-color: rgb(228, 127, 64);
    border-color: rgb(228, 127, 64);
    box-shadow: 0 0 0 0.1rem rgb(230, 129, 66);
}

.btn-warning:disabled {
    background-color: #e27b3b;
    border-color: #de6b23;
    opacity: 0.65;
}

.btn-secondary {
    color: #fff;
    background-color: rgba(51, 52, 55, 1) !important;
    border-color: rgba(51, 52, 55, 1) !important;
}

.btn-secondary:hover {
    color: #d7d7d7 !important;
    background-color: transparent !important;
    border-color: rgba(51, 52, 55, 1);
    color: rgba(51, 52, 55, 1);
}

.btn-secondary:focus,
.btn-secondary:active {
    color: #fff;
    background-color: rgb(50, 51, 54);
    border-color: rgb(46, 47, 49);
    box-shadow: 0 0 0 0.1rem rgba(51, 52, 55, 1);
}

.btn-secondary:disabled {
    background-color: rgb(46, 47, 49);
    border-color: rgb(46, 47, 49);
    opacity: 0.65;
}

.btn-purple-modal {
    color: #000000;
    background-color: transparent;
    border-color: rgba(136, 139, 244, 1);
}

.btn-purple-modal:hover {
    color: #fff;
    background-color: rgba(136, 139, 244, 1);
    border-color: rgb(123, 127, 249);
    color: #FFF;
}

.btn-purple-modal:focus,
.btn-purple-modal:active {
    color: #fff;
    background-color: rgb(123, 127, 249);
    border-color: rgb(123, 127, 249);
    box-shadow: 0 0 0 0.1rem rgb(125, 128, 238);
}

.btn-purple-modal:disabled {
    background-color: rgb(105, 110, 248);
    border-color: rgb(105, 110, 248);
    opacity: 0.65;
}

.btn-transparent {
    color: #000;
    background-color: transparent;
    border-color: #CECECE;
}

.btn-transparent:hover {
    color: #000;
    background-color: #cecececd;
    border-color: #afaeae;
}

.btn-transparent:focus,
.btn-transparent:active {
    color: #000;
    background-color: transparent;
    border-color: #cecaca;
    box-shadow: 0 0 0 0.1rem #d3d3d3;
}

.btn-purple-modal:disabled {
    background-color: #D3D3D3;
    border-color: #CECECE;
    opacity: 0.65;
}

.btn-rounded {
    border-radius: 80px;
}

.btn-nobg-purple {
    color: #3A57E8 !important;
    background-color: transparent !important;
    border-color: #3A57E8 !important;
}

.btn-nobg-red {
    color: #E54646 !important;
    background-color: transparent !important;
    border-color: #E54646 !important;
}

.btn-nobg-light-purple {
    color: #888BF4 !important;
    background-color: transparent !important;
    border-color: #888BF4 !important;
}

.btn-nobg-purple:hover {
    color: #fff !important;
    background-color: #3A57E8 !important;
    border-color: #fff !important;
}

.btn-nobg-red:hover {
    color: #FFF !important;
    background-color: #E54646 !important;
    border-color: #FFF !important;
}

.btn-nobg-light-purple:hover {
    color: #FFF !important;
    background-color: #888BF4 !important;
    border-color: #FFF !important;
}

.btn-nobg-warning {
    color: #F48E4F !important;
    background-color: transparent !important;
    border-color: #F48E4F !important;
}

.btn-nobg-warning:hover {
    color: #fff !important;
    background-color: #F48E4F !important;
    border-color: #fff !important;
}

.btn-warning-card {
    background-color: rgba(244, 142, 79, 0.15) !important;
    border-color: #F48E4F !important;
    color: #000 !important;
}

.btn-warning-card:hover {
    background-color: #F48E4F !important;
    border-color: #fff !important;
    color: #fff !important;
}

/* #endregion */

/* #region Badges Styles */

.badge-primary {
    background-color: rgba(38, 178, 227, 0.12);
    border: 1px solid #26B2E3;
    color: #26B2E3;
    font-size: 15px;
    font-weight: normal;
    padding: 0.25rem 2.4rem;
    border-radius: 0.25rem;
}

.badge-success {
    background-color: #D9FFE3;
    border: 1px solid #D9FFE3;
    color: #158934;
    font-size: 15px;
    font-weight: normal;
    padding: 10px 15px;
    border-radius: 30px;
}

.badge-success-i {
    color: #A7D789 !important;
    font-size: 10px !important;
}

.badge-purple {
    background-color: #EFEFFF;
    border: 1px solid #888BF4;
    color: #888BF4;
    font-size: 15px;
    font-weight: normal;
    padding: 0.25rem 0.5rem;
    border-radius: 30px;
}

.badge-orange {
    background-color: rgba(244, 142, 79, 0.12);
    border: 1px solid F48E4F;
    color: #F48E4F;
    font-size: 15px;
    font-weight: normal;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.badge-secondary {
    background-color: #F2F2F2;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* #endregion */

/* #region Login Styles */

.login-card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 20px;
}

.img-logo {
    margin: 0 auto;
}

.login-heading {
    font-weight: 500;
    font-size: 38px;
    line-height: 100%;
    margin: 15px 3%;
}

.login-content {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin: 15px 3%;
    color: #FFFFFFB3;
}

.login-section {
    height: 100vh;
}

.bg-login {
    background: linear-gradient(to bottom, rgba(38, 178, 227, 1), rgba(242, 143, 78, 1));
}

.login-side-title {
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0%;
    color: #fff;
    letter-spacing: 5px
}

.login-side-title span {
    font-weight: 400;
    font-size: 50px;
    line-height: 40px;
    letter-spacing: 0%;
    color: #fff;
    letter-spacing: 5px;
}

.img-side {
    max-width: 45rem;
    max-height: 26rem;
}

.forgot-password {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
}

.forgot-password:hover {
    text-decoration: none;
    color: #fff;
}

.sub-heading {
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    color: #FFF;
}

.sub-title {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #FFF;
}

/* #endregion */

/* #region Modal Styles */

.modal-footer {
    background-color: rgba(255, 244, 244, 1) !important;
    justify-content: center !important;
}

.modal-header {
    background: linear-gradient(to right, rgba(38, 178, 227, 1), rgba(242, 143, 78, 1));
    display: block !important;
}

.modal-title {
    font-weight: 600;
    font-size: 40px;
    color: #ffff;
    text-align: center;
}

.modal-content-custom {
    font-weight: 400;
    font-size: 20.5px;
    line-height: 140%;
    text-align: center;
    color: #ffff;
}

.title {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #000;
}

.modal-title-p {
    font-weight: 500;
    font-size: 16px;
    color: #000;
}

/* #endregion */

/* #region Custom Styles */

.banner-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #fff;
}

.banner-section {
    background: linear-gradient(to right, rgba(38, 178, 227, 1), rgba(242, 143, 78, 1));
    border-radius: 20px;
}

.banner-heading {
    font-weight: 800;
    font-size: 35px;
    line-height: 140%;
    color: #fff;
    letter-spacing: 3px;
}

.banner {
    gap: 3rem;
}

.content {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #9E9E9E;
}

p {
    color: rgba(255, 255, 255, 0.5);
}

.p-title {
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
    margin-bottom: 6px;
    text-align: center;
}

.p-title-bold {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(0, 0, 0, 1);
    text-decoration: small-caps; ;
}

.input-group-text {
    background-color: #fff !important;
    color: rgba(187, 187, 187, 1) !important;
}

.img-text {
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
}

.wrapper-pin {
    display: flex;
    justify-content: center;
    margin: 10px;
}

.pin-pill {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 3rem;
    border: 1px solid #DCDCDC;
    border-radius: 40px;
}

.pin-pill-purple {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 1rem;
    border: 1px solid #888BF4;
    border-radius: 40px;
    background-color: #EFEFFF;
}

.pin-pill-purple p {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #000;
    margin: 0 !important;
}

.pin-pill p {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #000;
    margin: 0 !important;
}

.icon-rounded {
    background-color: #26B2E3;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
}

.icon-rounded-orange {
    background-color: #F48E4F;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    cursor: pointer;
}

.icon-rounded-orange:hover {
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #F48E4F;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F48E4F;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #9F9F9F;
    border-radius: 4px;
    cursor: pointer;
    background: transparent;
    display: inline-block;
    position: relative;
}

input[type="checkbox"]:checked::before {
    content: '\2713';
    font-size: 14px;
    color: #0a4461;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.img-rounded {
    background-color: rgba(190, 190, 190, 0.16);
    width: 6rem;
    height: 6rem;
    border: 1px solid #DFDFDF;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-rounded-secondary {
    background-color: #a4a4a436;
    width: 6rem;
    height: 6rem;
    border: 2px solid #A4A4A4;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-rounded-bg-primary {
    background-color: rgba(38, 178, 227, 0.23);
    width: 8rem;
    height: 8rem;
    border: 1px solid #26B2E3;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pin-rounded {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid #26B2E3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-warning {
    color: #F48E4F !important;
}

.text-light-address {
    color: #9E9E9E;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
}

.file-upload-main {
    border: 2px solid #80cae7;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(234, 249, 255, 1);
    cursor: pointer;
    position: relative;
}

.file-upload {
    width: 95%;
    height: 21vh;
    border: 2px dashed #80cae7;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.file-upload input {
    display: none;
}

.file-upload img {
    width: 40px;
    height: 40px;
    opacity: 0.6;
}

.file-upload p {
    margin: 10px 0 0;
    font-size: 16px;
    color: #333;
}

.file-upload span {
    font-size: 12px;
    color: #777;
}

.font-size-3rem {
    font-size: 3rem;
}

.text-small-badge {
    font-weight: 500;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0%;
}

.bg-linear-card {
    background: linear-gradient(to right, rgba(38, 178, 227, 1), rgba(242, 143, 78, 1));
    padding: 20px;
    color: #fff;
    border-radius: 8px 0 0 8px;
    width: 70%;
    display: flex;
    align-items: center;
}

.bg-card-qr {
    padding: 20px;
    background: #FFF;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 8px 8px 0;
}

.form-check-input:checked {
    background-color: #26B2E3;
    border-color: #26B2E3;
}

.p-title-modal {
    font-weight: 400;
    font-size: 15px;
    color: #000;
}

.text-success {
    color: #12CD50 !important;
    font-weight: 400;
    font-size: 12px;
}

.disable {
    font-weight: 600;
    font-size: 15px;
    color: #C3C3C3 !important;
}

.custom-padding {
    padding: 3rem;
}

.bg-custom-dark {
    background-color: #1c1d2124;
}

/* #endregion */

/* #region Card Styles */

.card-footer {
    background-color: #FFF4F4;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px !important;
}

.card-qr {
    width: 20rem;
    background: white;
    border-radius: 15px;
    border: 10px solid #F48E4F;
    text-align: center;
    position: relative;
}

.card-qr-inner {
    border-radius: 6px;
    border: 6px solid #26B2E3;
    border-bottom: none;
    margin: 15px;
    text-align: center;
    padding: 15px;
}

.card-qr img {
    width: 100%;

}

.card-text-qr {
    background: #F48E4F;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.card-form {
    background-color: #fff;
    padding: 10px 20px;
}

.card-header {
    background: linear-gradient(to right, rgba(38, 178, 227, 1), rgba(242, 143, 78, 1));
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0 !important;
}

.card {
    border-radius: 20px;
    padding: 20px;
    border: 0.96px solid rgba(202, 202, 202, 1);
}

.card-content p {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #000;
}

/* #endregion */

/* #region Square Boexs Styles */

.square-box-orange {
    background-color: #F48E4F;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

.square-box-blue {
    background-color: #26B2E3;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

.square-box-content {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

/* #endregion */

/* #region Tabs Styles */

.nav-tabs .nav-link {
    color: #9D9D9D !important;
    border: none !important;
    background: transparent !important;
    padding: 10px 15px !important;
    border-bottom: 2px solid transparent !important;
}

.nav-tabs .nav-link.active {
    color: #F48E4F !important;
    border-bottom: 2px solid #F48E4F !important;
}

.nav-tabs .nav-link:hover {
    color: #F48E4F !important;
}

.nav {
    border: none;
}

.nav-link:focus-visible {
    outline: 0;
    box-shadow: none !important;
}

/* #endregion */

/* #region Border Styles */

.single-border-bottom {
    border-bottom: 1px solid #EBEBEB !important;
}

.border-radius {
    border-radius: 8px !important;
}

.border-bottom {
    position: relative;
    border-bottom: 1px solid rgba(193, 193, 193, 1) !important;
}

.border-bottom::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 4rem;
    height: 1px;
    background-color: blue;
}

.cornor-border {
    position: relative;
    padding: 10px;
    display: inline-block;
}

.cornor-border::before,
.cornor-border::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #26B2E3;
}

.cornor-border::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.cornor-border::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.cornor-border .corner-top-right,
.cornor-border .corner-bottom-left {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
}

.cornor-border .corner-top-right {
    top: 0;
    right: 0;
    border-top: 3px solid #26B2E3;
    border-right: 3px solid #26B2E3;
}

.cornor-border .corner-bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 3px solid #26B2E3;
    border-left: 3px solid #26B2E3;
}

.cornor-border .corner-bottom-right,
.cornor-border .corner-top-left {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
}

.cornor-border .corner-bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #26B2E3;
    border-right: 3px solid #26B2E3;
}

.cornor-border .corner-top-left {
    top: 0;
    left: 0;
    border-top: 3px solid #26B2E3;
    border-left: 3px solid #26B2E3;
}

/* #endregion */

/* #region Dropdown Styles */

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    font-size: 13px;
}

.dropdown i {
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 15rem;
    font-weight: 500;
    font-size: 13px;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;

}

.dropdown-menu-hover:hover,
.dropdown-menu-hover:hover a,
.dropdown-menu-hover:hover i {
    background-color: #26B2E3;
    color: white;
}

.dropdown-action {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
    border-radius: 2rem;
    border: 1px solid #26B2E3;
    font-size: 13px;
}

.dropdown-action i {
    margin-left: 5px;
}

.dropdown-menu-action {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    width: 150px;
    font-size: 13px;
    z-index: 1;
}

.dropdown-menu-action a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;

}

.dropdown-menu-hover:hover,
.dropdown-menu-hover:hover a,
.dropdown-menu-hover:hover i {
    background-color: #26B2E3;
    color: white;
}

/* #endregion */

/* #region Media Queries Styles */

@media (max-width: 1024px) and (min-width: 768px) {

    .banner-img img {
        height: 150px !important;
        width: 300px !important;
    }

    .custom-padding {
        padding: 2rem;
    }

    .banner-content h1 {
        font-weight: 600;
        font-size: 24px;
    }

    .banner-title {
        font-size: 18px;
    }
}

@media(max-width: 768px) {
    .banner-section {
        display: none;
    }

    .custom-d-none {
        display: none;
    }

    .margin-cutom {
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
    }

    .banner-content h1 {
        font-weight: 600;
        font-size: 22px;
    }

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

    th,
    td {
        padding: 8px;
        font-size: 14px;
    }

    td img {
        width: 60px;
    }
}

@media (max-width: 863px) {
    #login-side {
        display: none;
    }

    #login-main {
        width: 100%;
    }
}

/* #endregion */

/* #region Table And PAgination Styles */

.table-container {
    width: 100%;
    margin: 10px auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}


.table-height-1 {
    height: 42vh;
}

.table-height-2 {
    height: 42vh;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

thead {
    background: #26B2E3;
    color: white;
    font-weight: bold;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

tbody tr {
    transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}

tbody tr:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.status-success {
    background: #D9FFE3;
    color: #000;
    padding: 10px 15px;
    border-radius: 20px;
}

.status-danger {
    background: #FFD9D9;
    color: #000;
    padding: 10px 15px;
    border-radius: 20px;
}

td img {
    width: 150px;
}

.pagination-container {
    margin-top: 20px;
    text-align: center;
}

.page-btn {
    background: #26B2E3;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.page-btn i {
    font-size: 14px;
}

.page-btn:hover {
    background: rgb(5, 136, 206);
}

.page-btn.active {
    background: #F48E4F;
    font-weight: bold;
}

.page-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.table-image {
    width: auto;
    height: 60px;
}

.table-responsive-custom {
    overflow-x: auto;
    width: 100%;
    border-radius: 10px;
}

.table-responsive-custom table {
    min-width: 1000px;
    border-collapse: separate;
    border-spacing: 0;
}

.table-responsive-custom table th,
.table-responsive-custom table td {
    white-space: nowrap;
    vertical-align: middle;
}

/* #endregion */