@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ===================================
   Material Design Color Palette Override
   =================================== */

:root {
    /* Primary Colors - Blue */
    --bs-primary: #1976D2;
    --bs-primary-rgb: 25, 118, 210;
    --bs-primary-hover: #1565C0;

    /* Secondary Colors - Grey */
    --bs-secondary: #616161;
    --bs-secondary-rgb: 97, 97, 97;
    --bs-secondary-hover: #424242;

    /* Success Colors - Green */
    --bs-success: #388E3C;
    --bs-success-rgb: 56, 142, 60;
    --bs-success-hover: #2E7D32;

    /* Danger Colors - Red */
    --bs-danger: #D32F2F;
    --bs-danger-rgb: 211, 47, 47;
    --bs-danger-hover: #C62828;

    /* Warning Colors - Orange/Amber */
    --bs-warning: #F57C00;
    --bs-warning-rgb: 245, 124, 0;
    --bs-warning-hover: #EF6C00;

    /* Info Colors - Light Blue */
    --bs-info: #0288D1;
    --bs-info-rgb: 2, 136, 209;
    --bs-info-hover: #0277BD;

    /* Light & Dark */
    --bs-light: #F5F5F5;
    --bs-light-rgb: 245, 245, 245;
    --bs-dark: #212121;
    --bs-dark-rgb: 33, 33, 33;
}

/* Bootstrap Background Color Classes */
.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.bg-success {
    background-color: var(--bs-success) !important;
}

.bg-danger {
    background-color: var(--bs-danger) !important;
}

.bg-warning {
    background-color: var(--bs-warning) !important;
    color: #fff !important;
}

.bg-info {
    background-color: var(--bs-info) !important;
}

.bg-light {
    background-color: var(--bs-light) !important;
}

.bg-dark {
    background-color: var(--bs-dark) !important;
}

/* Bootstrap Button Classes */
.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--bs-primary-hover) !important;
    border-color: var(--bs-primary-hover) !important;
}

.btn-secondary {
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
    color: #ffffff !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--bs-secondary-hover) !important;
    border-color: var(--bs-secondary-hover) !important;
}

.btn-success {
    background-color: var(--bs-success) !important;
    border-color: var(--bs-success) !important;
    color: #ffffff !important;
}

.btn-success:hover,
.btn-success:focus {
    background-color: var(--bs-success-hover) !important;
    border-color: var(--bs-success-hover) !important;
}

.btn-danger {
    background-color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
    color: #ffffff !important;
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: var(--bs-danger-hover) !important;
    border-color: var(--bs-danger-hover) !important;
}

.btn-warning {
    background-color: var(--bs-warning) !important;
    border-color: var(--bs-warning) !important;
    color: #ffffff !important;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: var(--bs-warning-hover) !important;
    border-color: var(--bs-warning-hover) !important;
}

.btn-info {
    background-color: var(--bs-info) !important;
    border-color: var(--bs-info) !important;
    color: #ffffff !important;
}

.btn-info:hover,
.btn-info:focus {
    background-color: var(--bs-info-hover) !important;
    border-color: var(--bs-info-hover) !important;
}

.btn-light {
    background-color: var(--bs-light) !important;
    border-color: #BDBDBD !important;
    color: #212121 !important;
}

.btn-light:hover,
.btn-light:focus {
    background-color: #EEEEEE !important;
    border-color: #9E9E9E !important;
}

.btn-dark {
    background-color: var(--bs-dark) !important;
    border-color: var(--bs-dark) !important;
    color: #ffffff !important;
}

.btn-dark:hover,
.btn-dark:focus {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

/* Bootstrap Text Color Classes */
.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.text-success {
    color: var(--bs-success) !important;
}

.text-danger {
    color: var(--bs-danger) !important;
}

.text-warning {
    color: var(--bs-warning) !important;
}

.text-info {
    color: var(--bs-info) !important;
}

.text-light {
    color: #9E9E9E !important;
}

.text-dark {
    color: var(--bs-dark) !important;
}

/* Bootstrap Border Color Classes */
.border-primary {
    border-color: var(--bs-primary) !important;
}

.border-secondary {
    border-color: var(--bs-secondary) !important;
}

.border-success {
    border-color: var(--bs-success) !important;
}

.border-danger {
    border-color: var(--bs-danger) !important;
}

.border-warning {
    border-color: var(--bs-warning) !important;
}

.border-info {
    border-color: var(--bs-info) !important;
}

/* Bootstrap Badge Classes */
.badge.bg-primary {
    background-color: var(--bs-primary) !important;
}

.badge.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.badge.bg-success {
    background-color: var(--bs-success) !important;
}

.badge.bg-danger {
    background-color: var(--bs-danger) !important;
}

.badge.bg-warning {
    background-color: var(--bs-warning) !important;
    color: #fff !important;
}

.badge.bg-info {
    background-color: var(--bs-info) !important;
}

/* Bootstrap Alert Classes */
.alert-primary {
    background-color: #E3F2FD !important;
    color: #0D47A1 !important;
    border-color: #90CAF9 !important;
}

.alert-secondary {
    background-color: #F5F5F5 !important;
    color: #212121 !important;
    border-color: #BDBDBD !important;
}

.alert-success {
    background-color: #E8F5E9 !important;
    color: #1B5E20 !important;
    border-color: #81C784 !important;
}

.alert-danger {
    background-color: #FFEBEE !important;
    color: #B71C1C !important;
    border-color: #E57373 !important;
}

.alert-warning {
    background-color: #FFF3E0 !important;
    color: #E65100 !important;
    border-color: #FFB74D !important;
}

.alert-info {
    background-color: #E1F5FE !important;
    color: #01579B !important;
    border-color: #4FC3F7 !important;
}

/* Bootstrap Outline Button Classes */
.btn-outline-primary {
    color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--bs-primary) !important;
    color: #ffffff !important;
}

.btn-outline-secondary {
    color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
}

.btn-outline-secondary:hover {
    background-color: var(--bs-secondary) !important;
    color: #ffffff !important;
}

.btn-outline-success {
    color: var(--bs-success) !important;
    border-color: var(--bs-success) !important;
}

.btn-outline-success:hover {
    background-color: var(--bs-success) !important;
    color: #ffffff !important;
}

.btn-outline-danger {
    color: var(--bs-danger) !important;
    border-color: var(--bs-danger) !important;
}

.btn-outline-danger:hover {
    background-color: var(--bs-danger) !important;
    color: #ffffff !important;
}

.btn-outline-warning {
    color: var(--bs-warning) !important;
    border-color: var(--bs-warning) !important;
}

.btn-outline-warning:hover {
    background-color: var(--bs-warning) !important;
    color: #ffffff !important;
}

.btn-outline-info {
    color: var(--bs-info) !important;
    border-color: var(--bs-info) !important;
}

.btn-outline-info:hover {
    background-color: var(--bs-info) !important;
    color: #ffffff !important;
}

/* ===================================
   End Material Design Color Palette
   =================================== */


body {
    margin: 0;
    padding: 0;
    background: #FAFAFA;
    color: #1C4054;
    font-size: 14px !important;
    font-family: "Inter";
}

.blurred-images {
    /* position: relative; */
    width: 100%;
    height: 100vh;
}

.container-fluid {
    width: 98% !important;
}

.blur1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    z-index: -3;
}

.blur2 {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100vh;
    z-index: -3;
}

.blur3 {
    /* display: none; */
    position: absolute;
    width: 500px;
    height: 400px;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.login-panel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-card {
    width: 600px;
    background: #FFFFFF;
    border: 1px solid #E2E2E2;
    border-radius: 11px;
    padding: 1rem;
}

.logo-cover {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-cover img {
    margin-top: 39px;
}

.radio-buttons {
    display: flex;
    justify-content: center;

}

.radio-buttons p {
    margin-top: 76px;
    /* margin-right: 39px; */
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
}

/* Admin offcanvas menu */
#sideMenu.offcanvas-start {
    background: #020617;
    color: #e5e7eb;
    width: 260px;
}

#sideMenu .offcanvas-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    padding-bottom: 0.5rem;
}

#sideMenu .offcanvas-title {
    font-weight: 600;
    letter-spacing: 0.03em;
}

#sideMenu .btn-close {
    filter: invert(1) grayscale(100%);
    opacity: 0.7;
}

#sideMenu .offcanvas-body {
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
}

#sideMenu ul {
    margin: 0;
    padding: 0;
}

#sideMenu .nav-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.5rem;
    color: #e5e7eb;
    border-radius: 0.375rem;
    font-size: 0.9rem;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

#sideMenu .nav-link i {
    width: 1.1rem;
    text-align: center;
    color: #9ca3af;
    transition: color 0.15s ease;
}

#sideMenu .nav-link span {
    white-space: nowrap;
}

#sideMenu .nav-link:hover {
    background: rgba(55, 65, 81, 0.85);
    color: #f9fafb;
    transform: translateX(1px);
}

#sideMenu .nav-link:hover i {
    color: #38bdf8;
}

#sideMenu .nav-link.active {
    background: linear-gradient(90deg, #2563eb, #22c55e);
    color: #f9fafb;
}

#sideMenu .nav-link.active i {
    color: #f9fafb;
}

#sideMenu .menu-section-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    background: rgba(15, 23, 42, 0.95);
    color: #f9fafb;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.5rem;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: left;
}

#sideMenu .menu-section-toggle:hover {
    background: rgba(30, 41, 59, 1);
    color: #f9fafb;
}

#sideMenu .menu-section-toggle:focus {
    box-shadow: none;
}

#sideMenu .menu-section-toggle i:first-child {
    width: 1.1rem;
    text-align: center;
    color: #38bdf8;
}

#sideMenu .menu-section-toggle .chevron {
    color: #94a3b8;
    transition: transform 0.15s ease;
}

#sideMenu .menu-section-toggle[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

#sideMenu .menu-section {
    margin-bottom: 0.75rem;
}

#sideMenu .menu-section-links {
    margin-top: 0.4rem;
    padding-left: 0.35rem;
    border-left: 1px solid rgba(148, 163, 184, 0.18);
}

#sideMenu li+li {
    margin-top: 0.1rem;
}


.client:checked,
.client:not(:checked) {
    position: absolute;
    left: -9999px;
}

.client:checked+label,
.client:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: poInter;
    /* line-height: 20px; */
    line-height: 23px;
    display: inline-block;
    color: #666;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
}

.client:checked+label:before,
.client:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #48B9C8;
    border-radius: 100%;
    color: #48B9C8 !important;
    /* background: #fff; */
}

.client:checked+label:after,
.client:not(:checked)+label:after {
    content: '';
    width: 11px;
    height: 11px;
    background: #48B9C8;
    position: absolute;
    top: 5.5px;
    left: 5.5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #48B9C8 !important;
}

.client:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    color: #48B9C8 !important;
}

.client:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #48B9C8 !important;
}


.log-inputs input {
    height: 56.07px;
    border: 1px solid #E2E2E2;
    border-radius: 11px;
    margin-top: 5px;
}

.button-submit {
    background: #48B9C8;
    border-radius: 11px;
    box-shadow: none;
    outline: none;
    border: none;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 1rem;
}

.forget-password {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 49.71px;
}

.forget-password a {
    text-decoration: none;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 15px;
    color: #48B9C8;
}

.login-card-footer {
    height: 128px;
    background: #F8F8F8;
    border: 1px solid #E2E2E2;
    border-radius: 0px 0px 11px 11px;
    margin-top: 49px;
}

.login-card-footer p {
    margin-top: 35px;
    margin-left: 31.4px;
    display: block;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 21px;
}

.login-card-footer a {
    text-decoration: none;
    margin-top: 15px;
    margin-left: 31.4px;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 15px;
    color: #48B9C8;
}


/* clent page */

#header-cover {
    /* background-color: yellowgreen; */
    border-bottom: 1px solid #E2E2E2;
}

.left-div {
    min-height: 120px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 40px !important;
}

.logo-client-cover img {
    height: 80px;
}

.logo-client-cover {
    margin-left: 40px;
}


.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.client-title {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 30px;
    color: #1C4054;
}

.import-candidates {
    background: #48B9C8;
    border-radius: 11px;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 15px;
    color: #FFFFFF;
    padding-top: 15px;
    text-align: center;
}

.import-candidates:hover {
    color: #FFFFFF;
}

.img-import-cand {
    position: absolute;
    top: 17px;
    left: 9px;
    height: 24px !important;
    width: 24px !important;
}


.notification-btn {
    position: relative;
    width: 57px;
    height: 57px;
    background: #F8F8F8;
    border-radius: 11px;
    /* display: flow-root; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;

}

.red-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -5px;
    right: -5px;
    background: #F05353;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification-count {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 12px;
    color: #FFFFFF;

}

.dropdwn-btn-header {
    /* position: relative; */
    width: 182px;
    height: 57px;
    background: #F8F8F8;
    border-radius: 11px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    /* color: #FFFFFF; */

}

.profile-image {
    width: 41px;
    height: 41px;
    border-radius: 7px;
}

.main-process-section {
    padding-top: 58px;
    /* border-bottom: 1px solid #E2E2E2; */
}

.pending-tab {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 12px;
    color: #798A94;
    /* background-color: green; */
    outline: none !important;
    box-shadow: none !important;
    padding-bottom: 12px;
    /* margin-right: 84px; */
    margin-right: 12px;
    margin-bottom: 5px;
}

.researcher-tab {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    color: #798A94;
    /* background-color: green; */
    outline: none !important;
    box-shadow: none !important;
    padding-bottom: 30px;
    margin-right: 84px;
}

.researcher-tab:hover {
    color: #798A94;
}

.researcher-tab-active {
    border-bottom: 3px solid #1C4054;
    ;
    outline: none;
    box-shadow: none;
    border-radius: 1px;
}


.pending-tab:hover {
    color: #798A94;
}



.pending-tabs-active {
    border-bottom: 3px solid #ED5230;
    ;
    outline: none;
    box-shadow: none;
    border-radius: 1px;
}

.pending-requests-count {
    display: inline-flex;
    padding: 5px 8px;
    height: 20px;
    background: #ED5230;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 12px;
    color: #FFFFFF;
}

.in-process-count {
    background-color: #48B9C8;
}

.finished-count {
    background-color: #27BA74;
}

.researcher-count {
    background-color: #1C4054;
}

.card-space {
    padding-right: 10px;
    ;
}

.pending-tab-active {
    border-bottom: 3px solid #ED5230 !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 1px;
}

.in-process-tab-active {
    border-bottom: 3px solid #48B9C8 !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 1px;
}

.finished-tab-active {
    border-bottom: 3px solid #27BA74 !important;
    outline: none;
    box-shadow: none;
    border-radius: 1px;
}

#process-cards-section {
    margin-top: 38px;
}

.process-cards-columns {
    width: 377px;
    height: 573px;
    background: #FFFFFF;
    box-shadow: 1px 24px 47px rgba(0, 0, 0, 0.01);
    border-radius: 11px;
}

.card-details {
    height: 80px;
    margin-top: 33px;
    padding-left: 24px;
    ;
}

.process-count {
    width: 30px;
    height: 30px;
    background: #FFF5F2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 14px;
    color: #ED5230;
    ;

}

.pc-blue {
    background: #EFF8FA !important;
    color: #48B9C8 !important;
}

.process-name {
    width: 220px;
    height: 75px;
    border: 1px solid #CCD2E3;
    border-radius: 11px;
    margin-left: 26px;
    padding: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.notify-2 {
    height: 44px !important;
    width: 44px !important;
}

.pendImg {
    position: absolute;
    bottom: -3px;
    right: -14px;
    position: absolute;
    bottom: -3px;
    right: -14px;
}


.process-name span {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;

}

.pp-title {
    font-family: 'Inter' !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}

.pagination-tab {
    margin-top: 49px;
    padding-bottom: 155px;
}



.pagination-tab nav {
    width: 373px;
    background: #FFFFFF;
    border: 1px solid #E2E2E2;
    box-shadow: 1px 24px 47px rgba(0, 0, 0, 0.01);
    border-radius: 11px;
}

.pagination-tab nav .pagination {
    justify-content: space-around !important;
    margin-top: 10px;
}

.pagination-tab nav .pagination li a {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter' !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    color: #798A94;

}

.pagination-tab nav .pagination li a span {
    font-size: 24px;
    font-weight: 400;
    color: var(--bs-primary);
}

.pagination-tab nav .pagination li a:active,
.pagination-tab nav .pagination li a.active {
    background-color: var(--bs-primary);
    color: #ffffff;
}

.pagination-tab nav .pagination li a:hover {
    background-color: #E3F2FD;
    color: var(--bs-primary);
}


.export-btn {
    /* width: 147px; */
    height: 57px;
    background: #FAFAFA;
    border: 1px solid #48B9C8;
    border-radius: 11px;
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #48B9C8;
    outline: none !important;
    box-shadow: none !important;
    padding-top: 15px;
}

.export-btn:hover,
.add-component-btn:hover {
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #48B9C8;
    outline: none !important;
    box-shadow: none !important;
}

.filter-section {
    display: flex;
    justify-content: flex-end;
    padding-right: 100px;
}


.filter-btn {
    min-width: 57px;
    height: 57px;
    border: 1px solid #CCD2E3;
    border-radius: 11px;
    text-align: center;
    padding-top: 15px;
}

.views {
    width: 100px;
    height: 57px;
    border: 1px solid #CCD2E3;
    border-radius: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tableview {
    width: 50px;
    height: 57px;
    /* background: #CCD2E3;
    border: 1px solid #CCD2E3; */
    border-radius: 11px;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.tileview {
    width: 50px;
    height: 57px;
    /* background: #CCD2E3;
    border: 1px solid #CCD2E3; */
    border-radius: 11px;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.view-active {
    background: #CCD2E3;
    /* border: 1px solid #CCD2E3; */
}

.add-client,
.add-researcher,
.add-success {
    /* width: 160px; */
    left: 1071px;
    top: 32px;
    background: #48B9C8;
    border-radius: 11px;
    outline: none !important;
    box-shadow: none !important;
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #ffffff;
    /* margin-left: 33px; */
}

.add-client:hover {
    background: #48B9C8;
    outline: none !important;
    box-shadow: none !important;
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #ffffff;

}

.delete-btn {
    height: 57px;
    left: 1071px;
    top: 32px;
    background: #F05353;
    border-radius: 11px;
    outline: none !important;
    box-shadow: none !important;
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #ffffff;
}

.add-success {
    padding-top: 15px;
    /* width: 186px; */
    background: #198754;
    /* margin-right: 44px !important; */
}

.add-success:hover {
    background: #198754;
    color: #ffffff;

}

.add-researcher {
    /* width: 186px; */
    background: #1C4054;
    /* margin-right: 44px !important; */
}

.add-researcher:hover {
    background: #1C4054;
    color: #ffffff;

}

.add-button {
    display: flex;
}

.worklist-title {
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 22px !important;
    text-align: center;
}

.custom-trow {
    /* width: ; */
    height: 51px;
    background: #1C4054;

}

.custom-trow th {
    font-size: 11px;
    color: #ffffff;
}

tr:nth-child(even) {
    background: #F5FCFF;
}


.allocate-selected {
    width: 153px;
    height: 41px;
    background: #48B9C8;
    border: 1px solid #48B9C8;
    border-radius: 11px;
    outline: none !important;
    box-shadow: none !important;
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 16px;
}

.allocate-selected:hover {
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #ffffff;
}

.import-body {

    background: #FAFAFA;
    border-radius: 8px;
    cursor: poInter;
}

.tit-import {
    font-family: 'Inter' !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    text-align: center;
    display: flex;
    justify-content: center;
}

.imp-cand {
    background: #48B9C8;
    border-radius: 11px;
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #ffffff;
    margin-top: 62px;
    ;
}

.imp-cand:hover {
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #ffffff;
}

.or {
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 25px !important;
    margin-top: 23px;
}

.import-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
}

.api-import {
    background: #FFFFFF;
    border: 2px solid #48B9C8;
    border-radius: 11px;
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    color: #48B9C8;

}

.form-cover form {
    padding: 20px;
}

.api-import:hover {
    color: #48B9C8;
}

.robot {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 120px;
}

.blue-ball {
    position: absolute;
    left: 0;
    bottom: 0;
}

.form-input {
    border: 1px solid #CCD2E3;
    border-radius: 11px;
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    color: #1C4054;

}

::-webkit-form-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #1C4054;
}

.add-client-cover {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.submit-btn {
    background: #48B9C8;
    border-radius: 11px;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #ffffff;
    position: absolute;
    right: 109px;
    padding: 1rem;
}

.my-custom {
    width: 547px;
}

.droptoogle {
    text-align: left;
}

.service-offer {
    position: absolute;
    right: 0;
    top: 14px;
}


.candidate-info {
    padding-top: 10px;
    ;
}

.name-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 74px;
    height: 74px;
    background: #48B9C8;
    border-radius: 37px;
    margin-right: 17px;
}

.actual-name a {
    text-decoration: none;
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    color: #1C4054;

}

.name-tag span {
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 23px !important;
    color: #ffffff;
}

.actual-candidate {
    margin: 10px;
}

.actual-candidate span {
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 35px !important;
    color: #48B9C8;
}

.cand-name {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.case-summary {
    position: relative !important;
    margin-top: 10px;
    padding-bottom: 21px;
}

.case-title {
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    color: #1C4054;
    margin-left: 21px;
}

.bordered {
    position: absolute;
    bottom: 0;
    width: 211px;
    height: 4px;
    display: block;
    background: #48B9C8;
}

.cand-det {
    margin: 5px;
}

.package {
    font-family: Inter !important;
    font-weight: 600;
    font-size: 12px !important;
    color: #1c4054;
}

.basic {
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #1C4054;
}

.identity {
    margin-top: 67px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 34px;
    border-bottom: 1px solid #CCD2E3;
}

.identity-title {
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    color: #1C4054;
    margin-left: 19px;
    ;
}

.ssn-trace {
    position: relative;
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    flex-direction: column;
    padding: 24px 0;
    ;
    border-bottom: 1px solid #CCD2E3;

}

.ssn-title {
    display: block;
    font-family: 'Inter' !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #48B9C8;
}

.ssn-awaiting {
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    color: #A1ACB1;

}

.not-yet {
    position: absolute;
    width: 142px;
    height: 34px;
    right: 0;
    background: #EDEDED;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.not-yet span {
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #1C4054;
}

/* media Queries */

::-webkit-input-placeholder {
    /* Edge */
    color: #1C4054 !important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #1C4054 !important;
}

::placeholder {
    color: #1C4054 !important;
}

.noti-profile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


/* media queries */

@media (max-width: 500px) {

    .blur1,
    .blur2 {
        display: none;
    }

    .add-button {
        display: block;

    }

    .login-card {
        width: 100%;
    }

    .blur1,
    .blur2 {
        display: none;
    }

    .forget-password {
        display: inline-block;
    }

    .button-submit {
        margin-top: 20px;
    }

    .logo-client-cover {
        margin-left: 18px;
    }

    .client-title {
        font-size: 22px !important;
    }


    .filter-section {
        justify-content: flex-start !important;
    }

    .pending-tab {
        margin-top: 20px;
    }

    .not-yet {
        margin-top: 20px;
        position: relative;
    }
}

@media (max-width: 1024px) {

    .blur1,
    .blur2 {
        display: none;
    }
}


@media (min-width: 700px) {
    .process-cards-columns {
        width: 100%;
    }

    .process-name {
        width: 100%;
    }

    .process-count {
        width: 40px;
    }





}




@media (max-width: 1400px) {
    .add-button {
        display: block;
    }
}

@media (max-width: 767px) {
    .import-cover-sec {
        display: flex;
        justify-content: flex-start;
    }

    .notify-section {
        justify-content: flex-start !important;
        align-items: center;
        /* margin-top: 30px; */
    }

    .import-deba {
        justify-content: block !important;
    }

    .import-candidates {
        width: 100%;
    }
}



@media (max-width: 994px) {
    .left-div {
        display: block;
        justify-content: flex-start;
    }

    .import-candidates {
        margin-left: 20px;
    }


    .filter-section {
        justify-content: flex-start;
        padding-bottom: 30px !important;
    }

    .form-input {
        width: 100%;
    }
}

@media (max-width: 324px) {
    .export-btn {
        font-size: 9px !important;
    }
}

@media (max-width: 1409px) {
    .noti-profile {
        /* display: block; */
        width: 100%;
        flex-wrap: wrap;
    }

    .new-drop {
        margin-top: 20px;
    }

    .remover {
        margin-top: 0 !important;
    }

    .new-noti,
    .new-drop {
        display: inline-flex;
    }


}

@media (max-width: 798px) {
    .noti-profile {
        display: inline-flex;
        flex-wrap: wrap;
        width: 100%;
    }

}


@media (max-width: 492px) {

    .new-noti,
    .new-drop {
        display: inline-flex;
        /* background-color: #27BA74; */
    }

    .import-cover-sec {
        padding: 10px !important;
        display: flex;
        justify-content: center;
    }

    .import-candidates {
        width: 100%;
    }

}

.btn-secondary {
    border-color: #48B9C8;
}

.btn-primary {
    border-color: #1C4054;
}


.btn-sm {
    padding: 0.2rem 0.4rem;
    font-size: .6rem;
    border-radius: 0.2rem;
}

.main-menu {
    position: fixed;
    left: 0;
    top: 1rem;
    background: #1C4054;
}


.add-component-btn {
    height: 41px;
    background: #FAFAFA;
    border: 1px solid #48B9C8;
    border-radius: 11px;
    font-family: 'Inter' !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #48B9C8;
    outline: none !important;
    box-shadow: none !important;
}


.btn-primary {
    background: #1C4054 !important;
    color: white !important;
}

.btn-secondary {
    background: #48B9C8;
    color: white;
}

.btn-hover:hover {
    background: rgb(224, 224, 224) !important;
}

.form-checkbox {
    width: 100%;
    height: 25px;
}

.case-checkbox {
    width: 2rem;
    height: 2rem;
}

#loader-gif {
    height: 100px;
}

#selectAllCheckbox {
    width: 2rem;
    height: 2rem;
}

.btn-loader {
    border: 4px solid var(--bs-danger);
    border-top: 4px solid transparent;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

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

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

button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.charge-item {
    height: 1000px;
    overflow: scroll;
}

.form-control,
.form-select {
    font-size: 0.7rem !important;
}

#form-cases .dt-hasChild {
    border-bottom: 0 white;
}

#form-cases tr:nth-child(even) {
    border-bottom: 2px black solid;
}


.sticky-top {
    background-color: #f8f9fa;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
}


.dashboard-card {
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: fit-content;
    border-radius: 20px;
}

.dashboard-card .title {
    display: flex;
    align-items: center;
}

.dashboard-card .title span {
    position: relative;
    padding: 0.5rem;
    background-color: #10B981;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
}

.dashboard-card .title span svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    height: 1rem;
}

.dashboard-card .title-text {
    margin-left: 0.5rem;
    color: #374151;
    font-size: 18px;
}

.dashboard-card .percent {
    margin-left: 0.5rem;
    color: #02972f;
    font-weight: 600;
    display: flex;
}

.dashboard-card .data {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.dashboard-card .data p {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #1F2937;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    text-align: left;
}

.dashboard-card .data .range {
    position: relative;
    background-color: #E5E7EB;
    width: 100%;
    height: 0.5rem;
    border-radius: 0.25rem;
}

.dashboard-card .data .range .fill {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #10B981;
    width: 76%;
    height: 100%;
    border-radius: 0.25rem;
}

.board-chat {
    position: absolute;
    right: 0;
    top: 154px;
    z-index: 9999;
}

.board-chat .background {
    background-color: #005c4b;
    border-radius: 50%;
    box-shadow: 0 2.1px 1.3px rgba(0, 0, 0, 0.044),
        0 5.9px 4.2px rgba(0, 0, 0, 0.054), 0 12.6px 9.5px rgba(0, 0, 0, 0.061),
        0 25px 20px rgba(0, 0, 0, 0.1);
    height: 80px;
    left: 10px;
    position: absolute;
    top: 10px;
    width: 80px;
}

.board-chat .chat-bubble {
    cursor: poInter;
    position: relative;
}

.board-chat .bubble {
    transform-origin: 50%;
    transition: transform 500ms cubic-bezier(0.17, 0.61, 0.54, 0.9);
}

.board-chat .line {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.75;
    stroke-linecap: round;
    transition: stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.board-chat .line1 {
    stroke-dasharray: 60 90;
    stroke-dashoffset: -20;
}

.board-chat .line2 {
    stroke-dasharray: 67 87;
    stroke-dashoffset: -18;
}

.board-chat .circle {
    fill: #ffffff;
    stroke: none;
    transform-origin: 50%;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.board-chat .active .bubble {
    transform: translateX(24px) translateY(4px) rotate(45deg);
}

.board-chat .active .line1 {
    stroke-dashoffset: 21;
}

.board-chat .active .line2 {
    stroke-dashoffset: 30;
}

.board-chat .active .circle {
    transform: scale(0);
}

.board-chat .unread-dot {
    position: absolute;
    top: 15px;
    right: 15px;
    display: none;
}


.message-board .card-container {
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.message-board .card-header {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.message-board .card-header .img-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
    background-color: #ffffff;
}

.message-board .card-header .img-avatar img {
    width: 100%;
    margin-top: 12px;
}

.message-board .card-header .text-chat {
    color: black;
    margin: 0;
    font-size: 20px;
}

.message-board .card-body {
    flex: 1;
    overflow-y: auto;
}

.message-board .messages-container {
    height: 65vh;
    overflow-y: scroll;
    scrollbar-width: none;
}

.message-board .messages-container::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari, and Edge */
}


.message-board .message-box {
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 10px;
}

.message-board .message-box.right {
    background-color: #3e1c51;
    color: #fff;
    font-size: 13px;
    left: 0;
}

.message-board .message-box.left {
    background-color: #f1f1f1;
    color: black;
    font-size: 13px;
    right: 0;
}

.message-board .message-input {
    padding: 5px;
    width: 100%;
}

.message-board .message-input .message-send {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    resize: none;
}

.message-board .message-input .button-send {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: poInter;
    margin-left: 10px;
    border-radius: 10px;
    font-size: 13px;
}

.message-board .message-input .button-send:hover {
    background-color: #f1f1f1;
    color: #333;
}


/* #chatModal .modal-dialog {
    z-index: 9999;
}

#chatModal .modal-dialog {
    width: 500px;
    right: 100px;
} */


.ticket-exists-square {
    width: 40px;
    height: 40px;
    display: flex;
    border: red 5px solid;
    margin-bottom: 5px;
}


.badge-civil {
    background-color: #3e1c51;
    color: #fff;
}


.form-check-input {
    width: 20px;
    height: 20px;
}

.form-check-label {
    margin-top: 5px;
}

.form-check-input:checked {
    background-color: #48B9C8;
    border-color: #48B9C8;
}

.side-menu {
    width: 0;
    height: 100%;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.5s;
    position: fixed;
    z-index: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px
}

.side-menu a {
    padding: 6px;
    text-decoration: none;
    font-size: 12px;
    color: white;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    color: #f1f1f1;
}

.side-menu ul li:hover {
    background-color: #555;
}

.side-menu a:hover {
    color: #f1f1f1;
}

.menu-btn {
    font-size: 20px;
    cursor: pointer;
    border: 1px solid #ffffff;
    color: white;
    padding: 8px 15px;
    top: 10px;
    left: 10px;
    z-index: 499;
}

.menu-btn:hover {
    background-color: #555;
}

.menu-btn:focus {
    outline: none;
}


.legend-badge {
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.78rem;
}

.legend-badge.present,
.legend-badge.success {
    background-color: #e0f2f1;
    color: #16a34a;
    border: 1px solid #16a34a;
}

.legend-badge.absent,
.legend-badge.danger {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #dc2626;
}

/* Loader overlay */
.table-loader-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.table-loader-overlay.active {
    display: flex;
}

.loader {
    border: 8px solid #eee;
    border-top: 8px solid var(--bs-primary);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
}

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

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

textarea.adjust-to-content {
    min-height: 50px;
    field-sizing: content;
}

/* ===================================
   DataTables Pagination Styles (Material Design)
   =================================== */

/* DataTables wrapper styling */
.dataTables_wrapper {
    font-family: 'Inter', sans-serif;
}

/* DataTables info text */
.dataTables_info {
    color: var(--bs-secondary) !important;
    font-size: 0.875rem;
    padding-top: 0.5rem;
}

/* DataTables length select */
.dataTables_length select {
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    color: var(--bs-dark);
    font-size: 0.875rem;
}

.dataTables_length select:focus {
    outline: none;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

/* DataTables filter/search input */
.dataTables_filter input {
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
    color: var(--bs-dark);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.dataTables_filter input:focus {
    outline: none;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

/* DataTables pagination container */
.dataTables_paginate {
    padding-top: 0.5rem;
}

/* Pagination list */
.dataTables_paginate .pagination {
    margin: 0;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 4px;
    justify-content: flex-end;
}

/* Pagination items */
.dataTables_paginate .paginate_button {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--bs-primary);
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 0.875rem;
}

.dataTables_paginate .paginate_button:hover {
    color: var(--bs-primary-hover);
    background-color: #E3F2FD;
    border-color: var(--bs-primary);
    text-decoration: none;
    z-index: 2;
}

.dataTables_paginate .paginate_button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.25);
}

/* Active page */
.dataTables_paginate .paginate_button.current,
.dataTables_paginate .paginate_button.current:hover,
.dataTables_paginate .paginate_button.current:focus {
    z-index: 3;
    color: #fff !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    cursor: default;
    font-weight: 600;
}

/* Disabled state */
.dataTables_paginate .paginate_button.disabled,
.dataTables_paginate .paginate_button.disabled:hover,
.dataTables_paginate .paginate_button.disabled:focus {
    color: #9E9E9E !important;
    pointer-events: none;
    cursor: not-allowed;
    background-color: #fff !important;
    border-color: #dee2e6 !important;
    opacity: 0.5;
}

/* Previous/Next buttons styling */
.dataTables_paginate .paginate_button.previous,
.dataTables_paginate .paginate_button.next {
    font-weight: 600;
}

.dataTables_paginate .paginate_button.first,
.dataTables_paginate .paginate_button.last {
    border-radius: 4px;
}

/* First pagination item */
.dataTables_paginate .paginate_button:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

/* Last pagination item */
.dataTables_paginate .paginate_button:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Ellipsis styling */
.dataTables_paginate .ellipsis {
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--bs-secondary);
    background-color: #fff;
    border: 1px solid #dee2e6;
    pointer-events: none;
    font-size: 0.875rem;
}

/* Alternative pagination style (paging_simple_numbers) */
.paging_simple_numbers .paginate_button {
    padding: 0.375rem 0.75rem;
    margin: 0 0.125rem;
    border-radius: 4px;
    border: 1px solid transparent;
}

.paging_simple_numbers .paginate_button:hover {
    border-color: var(--bs-primary);
}

.paging_simple_numbers .paginate_button.current {
    box-shadow: 0 2px 4px rgba(25, 118, 210, 0.25);
}

/* DataTables processing indicator */
.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid var(--bs-primary);
    border-radius: 4px;
    color: var(--bs-primary);
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* DataTables empty state */
.dataTables_empty {
    text-align: center;
    color: var(--bs-secondary);
    padding: 2rem !important;
    font-size: 1rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: #fff !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    cursor: default;
    font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: var(--bs-primary-hover) !important;
    background-color: #E3F2FD !important;
    background: #E3F2FD !important;
    border-color: var(--bs-primary) !important;
    text-decoration: none;
    z-index: 2;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dataTables_paginate .pagination {
        justify-content: center;
        margin-top: 1rem;
    }

    .dataTables_paginate .paginate_button {
        padding: 0.375rem 0.5rem;
        font-size: 0.75rem;
    }

    .dataTables_info {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

/* ===================================
   End DataTables Pagination Styles
   =================================== */

.selectize-dropdown-content .option.active {
    background-color: #0d6efd;
    color: #fff;
}

.qa-comments-highlight {
    background-color: #f3c6c6;
}

/* Highlighted ETA Date for Ticket Table */
.highlight-eta-date {
    background: #ffe0e0;
    color: #b30000;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0.25em 0.75em;
    border-radius: 0.4em;
    display: inline-block;
}
