@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f6f9ff;
    color: #313a43;
}

a {
    color: #001f47;     
    text-decoration: none;
}

a:hover {
    color: #011735;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

/*-- Font Weights --*/

.fw_4 {
    font-weight: 400 !important;
}

.fw_5 {
    font-weight: 500 !important;
}

.fw_6 {
    font-weight: 600 !important;
}

.fw_7 {
    font-weight: 700 !important;
}

/*-- Font Sizes --*/

.fs_9 {
    font-size: 9px !important;
}

.fs_10 {
    font-size: 10px !important;
}

.fs_11 {
    font-size: 11px !important;
}

.fs_12 {
    font-size: 12px !important;
}

.fs_13 {
    font-size: 13px !important;
}

.fs_14 {
    font-size: 12px !important;
}

.fs_15 {
    font-size: 15px !important;
}

.fs_16 {
    font-size: 16px !important;
}

.fs_18 {
    font-size: 18px !important;
}

.fs_20 {
    font-size: 20px !important;
}


img {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 74px;
    padding: 20px 30px;
    transition: all 0.3s;
}

/*
@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
} */

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
    margin-bottom: 10px;
}

.pagetitle h1 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #012970;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #012970;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# buttons CSS
--------------------------------------------------------------*/

.btn {
    transition: 0.3s ease-in-out;
    /* min-height: 20px; */
    /* min-width: 65px; */
    font-size: 13px;
    line-height: 29px;
    /* border-radius: 4px; */
}

.btn_h {
    min-height: 36px;
    line-height: 26px;
    padding-inline: 25px;
}

.btn:not(.dropdown-toggle):hover {
    transform: translateY(-5px);
}

.btn.btn-secondary {
    background: #001f47;
    border-color: #001f47;
}

.btn.btn-primary {
    background: #ef1e24;
    border-color: #ef1e24;
}

/* .btn.btn-primary:hover,
.btn:focus,
.btn:focus-visible {
    background: #001f47;
    border-color: #001f47;
} */

.btn.btn-primary:hover  {
    background: #001f47;
    border-color: #001f47;
}

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

.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgb(239 30 36 / 20%);
}

.cursor-pointer {
    cursor: pointer;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    animation-name: dropdown-animate;
    animation-duration: 0.2s;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
    color: #444444;
    text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
    text-decoration: none;
}

.dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f6f9ff;
}

/* @media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
} */

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

/* Light Backgrounds */
.bg-primary-light {
    background-color: #cfe2ff;
    border-color: #cfe2ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: #fff3cd;
    border-color: #fff3cd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-info-dark {
    background-color: #001f47;
    border-color: #001f47;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}

.bg-in-progress {
    background-color: #35a6dc;
}

.bg-reschedule {
    background-color: #4835dc;
}

.bg-ra {
    background-color: #5470c6;
}

/* Status Badge Styles */
.badge {
    font-size: 0.6875rem;
    padding: 0.2rem 0.5rem;
    font-weight: 500;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    line-height: 1;
    letter-spacing: 0.01em;
}

.badge.Resolved {
    background-color: #dcfce7;
    color: #166534;
}

.badge.Not.Resolved {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge.Original.Issue {
    background-color: #e0f2fe;
    color: #075985;
}

.badge.Positive.Feedback {
    background-color: #dcfce7;
    color: #166534;
}

.badge.Negative.Feedback {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge.Days.Left {
    background-color: #fef3c7;
    color: #92400e;
}

/* Card */
.card {
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card.h-100 {
    margin-bottom: 0;
}

.card-header,
.card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}

.card-title {
    padding: 20px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #012970;
    font-family: 'Montserrat', sans-serif;
}

.card-title span {
    color: #899bbd;
    font-size: 14px;
    font-weight: 400;
}

.card-body {
    padding: 0 20px 20px 20px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
}

/* Close Button */
.btn-close {
    background-size: 25%;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
}

/* Accordion */
.accordion-item {
    border: 1px solid #ebeef4;
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #012970;
    background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #4154f1;
}

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #899bbd;
    font-weight: 600;
}

.breadcrumb a {
    color: #899bbd;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
    color: #899bbd;
}

.breadcrumb .active {
    color: #ed1c24;
    font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
    margin-bottom: -2px;
    border: none;
    color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
    color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
    background-color: #fff;
    color: #4154f1;
    border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    line-height: 1;
    width: 100%;
    max-width: 200px;
}

.logo svg {
    width: 100%;
}

.logo_container {
    width: 100%;
    max-width: 296px;
}

.header .logo svg {
    display: inline-block;
    max-width: 185px;
}

/* @media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
} */

.logo img {
    max-height: 26px;
    margin-right: 6px;
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #012970;
    font-family: 'Poppins', sans-serif;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 74px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
    padding-left: 20px;
    /* Toggle Sidebar Button */
    /* Search Bar */
}

.header .toggle-sidebar-btn {
    font-size: 32px;
    padding-left: 0px;
    margin-right: 15px;
    cursor: pointer;
    color: #012970;
    order: -1;
}

.header .toggle-sidebar-btn {
    background: #001f47;
    color: #fff;
    padding: 0px;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.search-bar {
    min-width: 360px;
    padding: 0 20px;
}

/* @media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
} */

.search-form {
    width: 100%;
}

.search-form input {
    border: 0;
    font-size: 14px;
    color: #012970;
    border: 1px solid rgba(1, 41, 112, 0.2);
    padding: 7px 38px 7px 8px;
    border-radius: 3px;
    transition: 0.3s;
    width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
    outline: none;
    box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
    border: 1px solid rgba(1, 41, 112, 0.3);
}

.search-form button {
    border: 0;
    padding: 0;
    margin-left: -30px;
    background: none;
}

.search-form button i {
    color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}

.header-nav>ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 22px;
    color: #012970;
    margin-right: 25px;
    position: relative;
}

.header-nav .nav-profile {
    color: #012970;
}

.header-nav .nav-profile img {
    max-height: 50px;
}

.header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600;
}

.header-nav .badge-number {
    position: absolute;
    inset: -2px -5px auto auto;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
}

.header-nav .notifications {
    inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .notifications .notification-item i {
    margin: 0 20px 0 10px;
    font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .notifications .notification-item:hover {
    background-color: #f6f9ff;
}

.header-nav .messages {
    inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .messages .message-item a {
    display: flex;
}

.header-nav .messages .message-item img {
    margin: 0 20px 0 10px;
    max-height: 40px;
}

.header-nav .messages .message-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444444;
}

.header-nav .messages .message-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .messages .message-item:hover {
    background-color: #f6f9ff;
}

.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
    top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: #444444;
}

.header-nav .profile .dropdown-header span {
    font-size: 14px;
}

.header-nav .profile .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
    background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 74px;
    left: 0;
    bottom: 0;
    width: 270px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
}

/* @media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
} */

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}

/* @media (min-width: 1200px) {

  #main,
  #footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
} */

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-item {
    margin-bottom: 5px;
    position: relative;
}

.sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #899bbd;
    font-weight: 600;
    margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #899bbd;
    transition: 0.3;
    padding: 10px 15px;
    border-radius: 4px;
    min-width: 52px;
}

.sidebar-nav .nav-link i {
    font-size: 16px;
    margin-right: 10px;
    color: #899bbd;
}

.sidebar-nav .nav-link.collapsed {
    color: #899bbd;
    background: #fff;
    /* background: transparent; */
}

.sidebar-nav .nav-link.collapsed i {
    color: #899bbd;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    /* color: #4154f1; */
    color: #001f47;
    background: #f6f9ff;
}

.sidebar-nav .nav-link:hover i,
.sidebar-nav .nav-link.active i {
    /* color: #4154f1; */
    color: #001f47;
}

.sidebar-nav .nav-link .bi-chevron-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

.sidebar-nav .nav-content {
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #899bbd;
    transition: 0.3;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
}

.sidebar-nav .nav-content a i {
    font-size: 6px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
    color: #001f47;
}

.sidebar-nav .nav-content a.active i {
    background-color: #001f47;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
    position: absolute;
    right: 0px;
    top: 15px;
}

.dashboard .filter .icon {
    color: #aab7cf;
    padding-right: 20px;
    padding-bottom: 5px;
    transition: 0.3s;
    font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
    color: #4154f1;
}

.dashboard .filter .dropdown-header {
    padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #aab7cf;
    margin-bottom: 0;
    padding: 0;
}

.dashboard .filter .dropdown-item {
    padding: 8px 15px;
}

#reportrange {
    border-radius: 4px;
}

#reportrange span {
    font-size: 14px;
}

.daterangepicker.opensright .ranges li.active,
.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #012970;
}

/* Info Cards */
.dashboard .info-card {
    padding-bottom: 10px;
}

.dashboard .info-card h6 {
    font-size: 28px;
    color: #012970;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.dashboard .card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
}

.dashboard .sales-card .card-icon {
    color: #4154f1;
    background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
    color: #ff771d;
    background: #ffecdf;
}

/* Activity */
.dashboard .activity {
    font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
    color: #888;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
    content: "";
    position: absolute;
    right: -11px;
    width: 4px;
    top: 0;
    bottom: 0;
    background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
    margin-top: 3px;
    z-index: 1;
    font-size: 11px;
    line-height: 0;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid #fff;
    flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
    padding-left: 10px;
    padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
    top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
    padding-bottom: 0;
}

/* Recent Sales */
.dashboard .recent-sales {
    font-size: 14px;
}

.dashboard .recent-sales .table thead {
    /* background: #f6f6fe; */
}

/* .dashboard .recent-sales .table thead th {
  border: 0;
} */

.dashboard .recent-sales .dataTable-top {
    padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
    padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
    font-size: 14px;
}

.dashboard .top-selling .table thead {
    background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
    border: 0;
}

.dashboard .top-selling .table tbody td {
    vertical-align: middle;
}

.dashboard .top-selling img {
    border-radius: 5px;
    max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

.iconslist .icon {
    background-color: #fff;
    border-radius: 0.25rem;
    text-align: center;
    color: #012970;
    padding: 15px 0;
}

.iconslist i {
    margin: 0.25rem;
    font-size: 2.5rem;
}

.iconslist .label {
    font-family: var(--bs-font-monospace);
    display: inline-block;
    width: 100%;
    overflow: hidden;
    padding: 0.25rem;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
    padding: 30px;
}

.error-404 h1 {
    font-size: 180px;
    font-weight: 700;
    color: #4154f1;
    margin-bottom: 0;
    line-height: 150px;
}

.error-404 h2 {
    font-size: 24px;
    font-weight: 700;
    color: #012970;
    margin-bottom: 30px;
}

.error-404 .btn {
    background: #51678f;
    color: #fff;
    padding: 8px 30px;
}

.error-404 .btn:hover {
    background: #3e4f6f;
}

/* @media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
} */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #cddfff;
}

.footer .copyright {
    text-align: center;
    color: #012970;
}

.footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #012970;
}

/*--------------------------------------------------------------
# Input
--------------------------------------------------------------*/


.form-control,
.form-control:focus,
.form-control:focus-visible,
.datatable-input,
.datatable-input:focus-visible,
.form_input_d .input-group>.form-control,
.form_input_d .input-group>.form-floating,
.form_input_d .input-group>.form-select,
.form_input_d .form-control,
.form_input_d .form-select {
    background: #ecf4ff;
}

.eye_icon {
    position: absolute;
    right: 12px;
    transform: translate(0, -50%);
    top: 50%;
}

.password_box {
    position: relative;
}

.btn_group {
    column-gap: 10px;
    row-gap: 10px;
}

.heading_clr {
    color: #001f47;
}

.entry_select {
    min-height: 36px;
    min-width: 46px;
    font-size: 14px;
    border-color: #ccd4e2;
    border-radius: 4px;
}

/*-- Pagination CSS --*/

.pagination .page-item .page-link {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    margin: 0 0.125rem;
    color: #495057;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.pagination .page-item.active .page-link:hover {
    background-color: #0a58ca;
    border-color: #0a58ca;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagination .page-item.disabled .page-link:hover {
    background-color: #fff;
    border-color: #dee2e6;
}

/*------------ Stepper Form CSS -----------*/

.step {
    display: none;
}

.step.active {
    display: block;
}

.stepper {
    display: flex;
    /* justify-content: space-around; */
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 20px;
}

.form-label {
    font-size: 14px;
}

.stepper .stepper_count {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    color: #cacaca;
    width: 100%;
    max-width: 20%;
    font-size: 16px;
    /* justify-content: center; */
    column-gap: 10px;
    border-bottom: 1px solid #cacaca;
    padding-bottom: 8px;
}

.stepper .stepper_count.active {
    color: #001f47;
    font-weight: bold;
    border-color: var(--secondary-color);
}

.steper_header img {
    width: 120px;
    margin-right: 24px;
}

.stepper .stepper_count .spep-number {
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    border: 3px solid #ececec;
    border-radius: 50%;
}

.stepper .stepper_count.active .spep-number {
    background-color: var(--secondary-color);
    /* color: #001f47; */
    color: #ed1c24;
    border-color: var(--secondary-color);
}

.stepper_body .form_label {
    display: flex;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}

.bootstrap-select .dropdown-toggle,
.bootstrap-select .dropdown-toggle:hover,
.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select .dropdown-toggle:focus-visible,
.bootstrap-select .dropdown-toggle:active {
    background: #ecf4ff;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    color: #212529;
    border: 0;
    outline: none !important;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}

.dropdown-item.active,
.dropdown-menu .dropdown-item.active:hover {
    background: #012970;
}


.line_behind {
    /* background: #fff; */
    position: relative;
    overflow: hidden;
}

.line_behind::after {
    content: "";
    width: 100%;
    height: 1px;
    margin-left: 9px;
    background: #ededed;
    display: inline-block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}


/*-- Pagination CSS --*/
.bottom_pagination {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom_pagination .datatable-pagination li.datatable-hidden {
    visibility: hidden;
}

.datatable-pagination .datatable-disabled button {
    pointer-events: none;
    cursor: default;
}

.datatable-pagination .datatable-active a,
.datatable-pagination .datatable-active a:focus,
.datatable-pagination .datatable-active a:hover,
.datatable-pagination .datatable-active button,
.datatable-pagination .datatable-active button:focus,
.datatable-pagination .datatable-active button:hover {
    background-color: #d9d9d9;
    cursor: default;
}

.datatable-pagination .datatable-disabled a,
.datatable-pagination .datatable-disabled a:focus,
.datatable-pagination .datatable-disabled a:hover,
.datatable-pagination .datatable-disabled button,
.datatable-pagination .datatable-disabled button:focus,
.datatable-pagination .datatable-disabled button:hover {
    cursor: not-allowed;
    opacity: 0.4;
}

.datatable-table th button,
.datatable-pagination-list button {
    color: inherit;
    border: 0;
    background-color: inherit;
    cursor: pointer;
    text-align: inherit;
    font-weight: inherit;
    font-size: inherit;
}

.datatable-pagination a,
.datatable-pagination button {
    border: 1px solid transparent;
    float: left;
    margin-left: 2px;
    padding: 6px 12px;
    position: relative;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.datatable-pagination li {
    list-style: none;
    float: left;
}

.datatable-pagination a:hover,
.datatable-pagination button:hover {
    background-color: #d9d9d9;
}

.datatable-dropdown {
    display: none;
}

/*---- Job Information page CSS ----*/

.jd_title {
    padding-right: 10px;
}

.jd_title:first-child {
    max-width: 180px;
}

.jd_column {
    margin-bottom: 1rem;
}

.card-header.bg-info-dark {
    background-color: #001f47;
    border-color: #001f47;
}

.datatable-table>thead>tr>th,
.datatable-table>tbody>tr>td a,
.datatable-table>tbody>tr>td {
    font-size: 14px;
}

.datatable-table>thead>tr>th {
    border: 1px solid #e9ecef;
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.75rem 0.75rem;
    font-size: 0.85rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.datatable-table>thead>tr>th button {
    padding: 0;
    color: #495057;
    font-weight: 600;
}

.jd_column:nth-child(odd):last-child,
.jd_column:nth-child(even):last-child {
    margin-bottom: 0;
}

.jd_column input.form-control,
.jd_column .bootstrap-select .dropdown-toggle {
    min-height: 30px;
    padding: 0 10px !important;
    height: 30px;
}

/* .edit_select .btn.dropdown-toggle.btn-light {
  background: #dc3545;
  height: 32px;
  color: #fff;
  min-height: 32px;
  border-radius: 4px;
}

.edit_select .btn.dropdown-toggle.btn-light .filter-option-inner {
  line-height: normal;
} */

.bootstrap-select .dropdown-toggle {
    min-width: 100%;
}

.image_attachment img {
    object-fit: cover;
}

.image_attachment {
    max-width: 50px;
    border-radius: 5px;
    overflow: hidden;
}

.fw_6 {
    font-weight: 600;
}

.fw_4 {
    font-weight: 400;
}

.bg-info-dark {
    background-color: #17a2b8;
}

.line_behind {
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 5px;
}

.remove-button {
    border: none;
    background-color: transparent;
    color: #dc3545;
    font-size: 1.5rem;
    margin-top: 12px;
    cursor: pointer;
    transition: color 0.2s;
}


.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.input-group span {
    flex: 0 0 120px;
}

.input-group input {
    flex: 1;
    /* padding: 5px 10px; */
    /* border: 1px solid #ced4da; */
    /* border-radius: 4px; */
}

.input-group .remove-button {
    flex: 0 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.add-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.add-link:hover {
    text-decoration: underline;
}

.line_behind {
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 5px;
}

.summary-section {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.summary-item span {
    flex: 1;
}

.total {
    border-top: 1px solid #dee2e6;
    padding-top: 5px;
    font-weight: bold;
}

.center-button {
    display: flex;
    justify-content: center;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    padding: 0.470rem 0.75rem;
    font-size: 14px;
}

.input-group.mb-3 {
    flex-wrap: nowrap;
}

#labour-section .labour-item .form-label {
    margin-right: 10px;
}

#parts-section .parts-item .row>.col-lg-6 {
    padding-right: 10px;
}

.btn-submitted {
    margin-right: 10px;
}

.rja-details table {
    width: 100%;
    border-collapse: collapse;
}

.rja-details th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.rja-details th {
    background-color: #f2f2f2;
}

.rja-details tr:nth-child(even) {
    background-color: #f9f9f9;
}

.rja-details tr:hover {
    background-color: #ddd;
}

.rja-details .center-button {
    text-align: center;
    margin-top: 20px;
}

#success-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 80px;
}

.modal-content {
    background-color: #fefefe;
    border: 1px solid #888;
    width: 100%;
    /* color: #198754;
    font-weight: bold; */
    animation: dingdong 0.5s ease;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@keyframes dingdong {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }

}

.currencyinput {
    position: relative;
}

.currencyinput .doller {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 10px;
    font-weight: 400;
    font-size: 14px;
}

.email-input-group {
    display: flex !important;
    align-items: center !important;
}

.email-input {
    flex: 1 !important;
}

.email-action-button {
    margin-left: 10px !important;
}

#error {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: serif;
}

.error-container {
    margin-top: -30%;
    text-align: center;
}

.error-logo {
    margin-left: 18%;
    text-align: center;
    width: 58%;
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.2em;
    color: #333;
}

.error-message p {
    margin: 0;
}

.file-upload {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
}

.file-upload-label {
    cursor: pointer;
    color: black;
    display: flex;
    align-items: center;
}

.file-upload-label img {
    margin-right: 5px;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-label span {
    text-decoration: underline;
    color: blue;
    font-size: 14px;
}

.file-upload.cstm_fileUpload {
    width: 100%;
    height: 100%;
    min-height: 124px;
    padding: 0px;
    justify-content: center;
    border: 2px dashed #bdd7ff;
    border-radius: 32px;
    min-width: 124px;
    max-width: 124px;
    max-height: 124px;
}

.file-upload.cstm_fileUpload .file-upload-label {
    justify-content: center;
    align-items: center;
    padding-top: 10%;
}

.cstm_fileUpload .file-upload-label span {
    color: #606060;
    text-decoration: none;
    font-size: 12px;
    position: relative;
}

.cstm_fileUpload .file-upload-label span::before {
    content: "";
    width: 40px;
    height: 7px;
    position: absolute;
    background: #bdd7ff;
    top: -20px;
    transform: translate(-50%, -50%);
    left: 50%;
    border-radius: 3px;
}

.cstm_fileUpload .file-upload-label span::after {
    content: "";
    width: 40px;
    height: 7px;
    position: absolute;
    background: #bdd7ff;
    top: -20px;
    transform: translate(-50%, -50%) rotate(90deg);
    left: 50%;
    border-radius: 3px;
}

.attachmets_wrraper {
    display: flex;
    align-items: flex-start;
}

.attachments_add {
    max-width: 130px;
    width: 100%;
    margin-right: 20px;
}

.previwe_items {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
}

.previwe_items .previwe_box {
    max-width: 145px;
    max-height: 125px;
    min-width: 140px;
    position: relative;
    overflow: hidden;
    min-height: 125px;
}

.zoomed-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.zoomed-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.previwe_items .previwe_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 33px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 24px;
    display: inline-block;
    height: 24px;
    color: #cdcdcd;
    border-radius: 50%;
}

.previwe_items .previwe_box .close_btn,.trash-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 24px;
    display: inline-block;
    height: 24px;
    background: #cdcdcd;
    border-radius: 50%;
}

.previwe_items .previwe_box .close_btn::before {
    content: "";
    width: 15px;
    height: 2px;
    background: #818181;
    position: absolute;
    left: 5px;
    top: 11px;
    display: inline-block;
    transform: rotate(45deg);
}

.previwe_items .previwe_box .close_btn::after {
    content: "";
    width: 15px;
    height: 2px;
    background: #818181;
    position: absolute;
    left: 5px;
    top: 11px;
    display: inline-block;
    transform: rotate(-49deg);
}

.zoomed-overlay .close_btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 24px;
    display: inline-block;
    height: 24px;
    background: #cdcdcd;
    border-radius: 50%;
}

.zoomed-overlay .close_btn::before {
    content: "";
    width: 15px;
    height: 2px;
    background: #818181;
    position: absolute;
    left: 5px;
    top: 11px;
    display: inline-block;
    transform: rotate(45deg);
}

.zoomed-overlay .close_btn::after {
    content: "";
    width: 15px;
    height: 2px;
    background: #818181;
    position: absolute;
    left: 5px;
    top: 11px;
    display: inline-block;
    transform: rotate(-49deg);
}
.sidebar-nav .nav-link::after {
    font-weight: 400;
    content: attr(data-tooltip); /* pulls the title attribute */
    left: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    /* transform: translateY(-50%); */
    background-color: #fff;
    color: #001f47;
    padding: 8px 15px;
    line-height: 150%;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2147483647 !important;
    width: max-content;
    display: none;
}
 
.sidebar-nav .nav-item .nav-link:hover::after {
    display: block;
}
 
.toggle-sidebar .sidebar-nav .nav-item .nav-link::after, .sidebar-nav .has_dropdown .collapseble_box .sidebar-nav .nav-item .nav-link::after {
    display: none ;
}
.upload-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.upload-progress {
    width: 100%;
    padding: 10px 0;
}

.progress-bar-container {
    width: 100%;
    height: 25px;  /* Increased height */
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 12px;
    transition: width 0.3s ease;
    color: white;
    text-align: center;
    font-size: 14px;  /* Increased font size */
    line-height: 25px; /* Matched to container height */
}

.uploading-container {
    position: absolute;
    display: block;
    margin-top: 50px;

}

.card-header i.bi.bi-chevron-down {
    transition: 0.25s ease-in-out;
    transform: rotate(-180deg);
}

.pap-portal .card-header h5 {
    display: flex;
    justify-content: space-between;
}

.card-header .collapsed i.bi.bi-chevron-down {
    transform: rotate(0deg);
}




@media screen and (min-width: 1200px) {
    .uploading-container {
        width: 6%;
        max-width: 8%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .uploading-container {
        width: 11%;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .uploading-container {
        width: 8%;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .uploading-container {
        width: 8%;
    }
}

.empty-for-mobile {
    display: none;
}

@media screen and (max-width: 575px) {
    .previwe_items {
         gap: 0px;
    }

    .empty-for-mobile {
        display: block;
    }

    .attachments_add {
        position: absolute;
        z-index: 2;
        left: 20px;
        margin-top: 10px;
    }

    .uploading-container {
        width: 100%;
        padding: 0 10px;

    }

    .file-upload.cstm_fileUpload {
        min-height: 145px;
        min-width: 145px;
        max-width: 145px;
        max-height: 145px;
    }

    .previwe_items .previwe_box {
        max-height: 145px;
        min-height: 145px;
        min-width: unset;
        max-width: unset;
        margin-top: 10px;
    }

    .previwe_items .previwe_box img {
         max-width: unset;
    }

    .previwe_items .previwe_box .close_btn, .trash-btn {
        right: 23px;
    }
}

.confirmation-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.confirmation-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.confirmation-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-confirm {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-cancel {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-confirm:hover {
    background-color: #c82333;
}

.btn-cancel:hover {
    background-color: #5a6268;
}

#applianceModalCenter .previwe_box {
    max-height: 100px;
    min-height: 100px;
    max-width: 120px;
    min-width: 120px;
}

[data-trix-button-group="file-tools"],
[data-trix-action="link"],
[data-trix-attribute="code"]
{
    display: none !important;
}

/* Feedback Form Styles */
.star-rating {
    display: flex;
    gap: 8px;
}
.star-rating i {
    font-size: 18px;
    color: #FFD700;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.2s ease;
}
.star-rating i:hover {
    transform: scale(1.1);
    opacity: 1;
}
.star-rating i.bi-star-fill {
    color: #FFD700;
    opacity: 1;
}
.rating-group {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
}
.rating-group:hover {
    background-color: #f1f3f5;
}
.rating-group label {
    color: #495057;
    font-size: 13px;
    margin-bottom: 0.25rem;
}
.rating-group.mb-4 {
    margin-bottom: 0.75rem !important;
}
.btn {
    /* font-weight: 500; */
    /* padding: 0.4rem 1.25rem; */
}
.btn-success {
    background-color: #198754;
    border-color: #198754;
}
.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
    transform: translateY(-1px);
}
.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}
.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Attachments Grid Styling */
.attachments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    width: 100%;
}

.attachment-item {
    aspect-ratio: 1;
    overflow: hidden;
    padding: 2px;
    /* border-radius: 50%; */
}

.attachment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 4px; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.circular-image {
    border-radius: 50% !important;
    aspect-ratio: 1;
}

/* Add styling for file previews in the upload sections */
#sameIssueFileList img,
#differentIssueFileList img,
#negativeFeedbackFileList img {
    aspect-ratio: 1;
    object-fit: cover;
}

.attachment-image:hover {
    transform: scale(1.05);
}

/* Responsive Grid Adjustments */
@media (max-width: 576px) {
    .attachments-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .attachments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .attachments-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Image modal styles */
#imageModal .modal-content {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

#imageModal .modal-body {
    padding: 0;
    position: relative;
    /* border-radius: 50%; */
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

#imageModal .btn-close {
    color: white;
    opacity: 0.8;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

#modalImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

  .success-animation {
        display: inline-block;
    }
    .checkmark {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: block;
        stroke-width: 2;
        stroke: #47B262;
        stroke-miterlimit: 10;
        box-shadow: inset 0px 0px 0px #47B262;
        animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
        position: relative;
        margin: 0 auto;
    }
    .checkmark__circle {
        stroke-dasharray: 166;
        stroke-dashoffset: 166;
        stroke-width: 2;
        stroke-miterlimit: 10;
        stroke: #47B262;
        fill: none;
        animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }
    .checkmark__check {
        transform-origin: 50% 50%;
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
        animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    }
    @keyframes stroke {
        100% { stroke-dashoffset: 0; }
    }
    @keyframes scale {
        0%, 100% { transform: none; }
        50% { transform: scale3d(1.1, 1.1, 1); }
    }
    @keyframes fill {
        100% { box-shadow: inset 0px 0px 0px 30px #47B262; }
    }

    /* Form Styles */
    .border-2 {
        border-width: 2px !important;
    }
    #negativeFeedbackFileDropZone {
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px dashed #dee2e6;
    }
    #negativeFeedbackFileDropZone:hover {
        border-color: #0d6efd;
        background-color: rgba(13, 110, 253, 0.05);
    }
    #negativeFeedbackFileDropZone.border-primary {
        border-color: #0d6efd;
        border-style: dashed;
        background-color: rgba(13, 110, 253, 0.05);
    }
    .attachment-item img {
        /* max-height: 150px; */
        /* max-width: 150px; */
        object-fit: cover;
        /* border-radius: 8px; */
    }
    .form-control:focus {
        border-color: #80bdff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }
    .modal-content {
        border-radius: 1rem;
    }
    .rounded-pill {
        border-radius: 50rem !important;
    }
    .modal-sm {
        max-width: 360px;
    }
    .modal-body {
        padding: 1.5rem !important;
    }
    .modal-content {
        margin: 0 1rem;
    }

    /* Success Modal Styles */
    #successModal .modal-sm {
        max-width: 320px;
    }

    #successModal .modal-content {
        border-radius: 16px;
        overflow: hidden;
        margin: 0 1rem;
    }

    #successModal .modal-body {
        padding: 0 !important;
    }

    #successModal .success-content {
        padding: 2rem !important;
    }

    #successModal .checkmark-wrapper {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #successModal .success-animation {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #successModal .checkmark {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: block;
        stroke-width: 2;
        stroke: #47B262;
        stroke-miterlimit: 10;
        box-shadow: inset 0px 0px 0px #47B262;
        animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    }

    #successModal .checkmark__circle {
        stroke-dasharray: 166;
        stroke-dashoffset: 166;
        stroke-width: 2;
        stroke-miterlimit: 10;
        stroke: #47B262;
        fill: none;
        animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }

    #successModal .checkmark__check {
        transform-origin: 50% 50%;
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
        animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    }

    #successModal .btn {
        padding: 0.625rem 1.5rem;
        font-weight: 500;
        transition: all 0.2s ease-in-out;
    }

    #successModal .btn:hover {
        transform: translateY(-1px);
    }

    #successModal .btn-success {
        background-color: #47B262;
        border-color: #47B262;
    }

    #successModal .btn-success:hover {
        background-color: #3d9653;
        border-color: #3d9653;
    }

    #successModal .btn-light {
        background-color: #f8f9fa;
        border-color: #f8f9fa;
    }

    #successModal .btn-light:hover {
        background-color: #e9ecef;
        border-color: #e9ecef;
    }

    @keyframes stroke {
        100% {
            stroke-dashoffset: 0;
        }
    }

    @keyframes scale {
        0%, 100% {
            transform: none;
        }
        50% {
            transform: scale3d(1.1, 1.1, 1);
        }
    }

    @keyframes fill {
        100% {
            box-shadow: inset 0px 0px 0px 30px #47B262;
        }
    }

    /* New styles for section positioning */
    .section {
        position: relative;
        width: 100%;
    }

    #negativeFeedbackForm {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    #feedbackForm {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    /* Add styles to ensure proper form visibility */
    .section {
        display: none;
    }

    section.section {
        display: block;
    }
    
    /* Override for specific sections that should be visible */
    #feedbackForm.visible,
    #negativeFeedbackForm.visible,
    #sameIssueForm.visible,
    #differentIssueForm.visible,
    #issueNotResolvedWindow.visible {
        display: block !important;
    }

    #feedbackForm,
    #negativeFeedbackForm,
    #sameIssueForm,
    #differentIssueForm,
    #issueNotResolvedWindow {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

/*--------------------------------------------------------------
# Modern & Responsive Datatable Styles for SOI
--------------------------------------------------------------*/
/* Basic datatable styles */
.datatable-wrapper {
    width: 100%;
    overflow: hidden;
}

.datatable-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.datatable-search input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.datatable-search input:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
    outline: none;
}

/* Modern table styling */
.modern-table,
.datatable.modern-table {
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    width: 100%;
}

.modern-table thead,
.datatable.modern-table thead {
    background-color: #f8f9fa;
}

.modern-table th,
.datatable.modern-table th {
    white-space: nowrap;
    padding: 0.75rem 0.75rem;
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #e9ecef;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: #f8f9fa;
}

.modern-table td,
.datatable.modern-table td {
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
    line-height: 1.4;
    border-top: none;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.modern-table tbody tr,
.datatable.modern-table tbody tr {
    transition: all 0.2s;
}

.modern-table tbody tr:hover,
.datatable.modern-table tbody tr:hover {
    background-color: #f8f9ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.modern-table .badge,
.datatable.modern-table .badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem !important;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Alternating row colors */
.modern-table tbody tr:nth-child(even),
.datatable.modern-table tbody tr:nth-child(even) {
    background-color: #fafbff;
}

/* Hover effect for clickable elements */
.hover-scale {
    transition: transform 0.15s ease-in-out;
}
    
.hover-scale:hover {
    transform: scale(1.25);
}

/* Pagination improvements */
.datatable-pagination,
.pagination-wrapper {
    margin-top: 1rem;
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
}

.datatable-pagination ul {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.375rem;
}

.datatable-pagination li {
    display: flex;
    align-items: center;
}

.datatable-pagination a,
.datatable-pagination button,
.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0.25rem 0.75rem;
    margin: 0 0.125rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

.datatable-pagination a:hover,
.datatable-pagination button:hover,
.pagination .page-link:hover {
    z-index: 2;
    color: #0d6efd;
    background-color: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

.datatable-pagination .datatable-active a,
.datatable-pagination .datatable-active button,
.pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #001f47;
    border-color: #001f47;
}

/* Responsive table for mobile */
@media (max-width: 992px) {
    .datatable-top {
        flex-direction: column;
        align-items: stretch;
    }
    
    .datatable-search {
        width: 100%;
    }
    
    .modern-table,
    .datatable.modern-table {
        /* border-radius: 20px; */
        /* box-shadow: none; */
    }
    
    .modern-table thead,
    .datatable.modern-table thead {
        display: none;
    }
    
    .modern-table tbody tr,
    .datatable.modern-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border-radius: 20px;
    }
    
    .modern-table tbody td,
    .datatable.modern-table tbody td {
        display: block;
        text-align: right;
        padding: 0.75rem;
        position: relative;
        border-bottom: 1px solid #f0f0f0;
        background-color: transparent;
    }
    
    .modern-table tbody td:last-child,
    .datatable.modern-table tbody td:last-child {
        border-bottom: none;
    }
    
    .modern-table tbody td:before,
    .datatable.modern-table tbody td:before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: #495057;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .modern-table tbody td.text-center,
    .datatable.modern-table tbody td.text-center {
        text-align: center !important;
    }
    
    .modern-table tbody td.text-center:before,
    .datatable.modern-table tbody td.text-center:before {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .datatable-pagination a,
    .datatable-pagination button {
        padding: 0.25rem 0.5rem;
        min-width: 1.8rem;
        height: 1.8rem;
    }
}

/* Datatable search fixes for mobile */
@media (max-width: 576px) {
    .datatable-top {
        gap: 0.5rem;
    }
    
    .datatable-search {
        margin-bottom: 0.5rem;
    }
    
    .datatable-info {
        text-align: center;
        width: 100%;
        font-size: 0.85rem;
    }
    
    .datatable-pagination {
        justify-content: center;
        width: 100%;
    }
    
    .datatable-pagination ul {
        justify-content: center;
    }
}

/* Status badges and indicators */
.badge {
    padding: 0.35em 0.65em;
    border-radius: 0.375rem;
}

.badge.Resolved {
    background-color: #dcfce7;
    color: #166534;
}

.badge.Not.Resolved {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge.Original.Issue {
    background-color: #e0f2fe;
    color: #075985;
}

.badge.New.Issue {
    background-color: #fef3c7;
    color: #92400e;
}

.badge.Positive.Feedback {
    background-color: #dcfce7;
    color: #166534;
}

.badge.Negative.Feedback {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge.Days.Left {
    background-color: #fef3c7;
    color: #92400e;
}

/* Custom cursor for clickable elements */
.cursor-pointer {
    cursor: pointer;
}

/* View button styling */
a.view-link, 
.datatable.modern-table a.view-link {
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

a.view-link:hover,
.datatable.modern-table a.view-link:hover {
    color: #0a58ca;
    transform: translateY(-2px);
}

a.view-link i,
.datatable.modern-table a.view-link i {
    font-size: 1.2rem;
}

/* Utility classes for view buttons and badges */
.fs-5 {
    font-size: 1.1rem !important;
}

/* Add small gap between filters in datatable header */
.filter-container {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-container .form-select,
.filter-container .form-control {
    min-width: 140px;
}

/* Status Pills */
.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35em 0.75em;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 50rem;
}

.status-pill-success {
    background-color: #198754;
}

.status-pill-danger {
    background-color: #dc3545;
}

.status-pill-warning {
    background-color: #ffc107;
    color: #212529;
}

.status-pill-info {
    background-color: #0dcaf0;
    color: #212529;
}

/*--------------------------------------------------------------
# Responsive Table Utilities
--------------------------------------------------------------*/
/* Apply modern table styles to any table */
.table.table-modern,
.table.table-modern.datatable {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    width: 100%;
    margin-bottom: 0;
}

.table.table-modern thead th,
.table.table-modern.datatable thead th {
    background-color: #f8f9fa;
    color: #495057;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.75rem;
    white-space: nowrap;
}

.table.table-modern tbody tr:nth-child(even),
.table.table-modern.datatable tbody tr:nth-child(even) {
    background-color: #fafbff;
}

.table.table-modern tbody tr:hover,
.table.table-modern.datatable tbody tr:hover {
    background-color: #f8f9ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.table.table-modern tbody td,
.table.table-modern.datatable tbody td {
    border-top: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
    vertical-align: middle;
}

/* Mobile responsive styles */
@media (max-width: 767px) {
    .table-responsive-card table.table-modern,
    .table-responsive-card table.datatable.modern-table {
        border: none;
        box-shadow: none;
    }
    
    .table-responsive-card table.table-modern thead,
    .table-responsive-card table.datatable.modern-table thead {
        display: none;
    }
    
    .table-responsive-card table.table-modern tbody tr,
    .table-responsive-card table.datatable.modern-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.05);
        background-color: #fff !important;
    }
    
    .table-responsive-card table.table-modern tbody td,
    .table-responsive-card table.datatable.modern-table tbody td {
        display: block;
        text-align: right;
        position: relative;
        padding: 0.75rem 0.75rem 0.75rem 35%;
    }
    
    .table-responsive-card table.table-modern tbody td:before,
    .table-responsive-card table.datatable.modern-table tbody td:before {
        content: attr(data-label);
        position: absolute;
        left: 0.75rem;
        width: 32%;
        padding-right: 10px;
        text-align: left;
        font-weight: 600;
        color: #495057;
        font-size: 0.75rem;
        text-transform: uppercase;
    }
    
    .table-responsive-card table.table-modern tbody td:not(:last-child),
    .table-responsive-card table.datatable.modern-table tbody td:not(:last-child) {
        border-bottom: 1px solid #f0f0f0;
    }
    
    /* Center-aligned content like buttons/actions */
    .table-responsive-card table.table-modern tbody td.text-center,
    .table-responsive-card table.datatable.modern-table tbody td.text-center {
        text-align: center !important;
        padding-left: 0.75rem;
    }
    
    .table-responsive-card table.table-modern tbody td.text-center:before,
    .table-responsive-card table.datatable.modern-table tbody td.text-center:before {
        display: block;
        position: static;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

/* Table filters responsive design */
@media (max-width: 767px) {
    .filter-container {
        margin-bottom: 1rem;
    }
    
    .filter-container .form-select,
    .filter-container .form-control {
        margin-bottom: 0.5rem;
    }
    
    .datatable-top {
        margin-bottom: 0.5rem;
    }
}

/* Improve button and label styles for mobile */
@media (max-width: 576px) {
    .btn {
        padding: 0.375rem 0.75rem;
    }
    
    .filter-label {
        display: block;
        margin-bottom: 0.25rem;
        font-weight: 600;
        font-size: 0.8rem;
    }
    
    .datatable-info {
        font-size: 0.8rem;
    }

    .table-responsive table.table {
        white-space: nowrap;
    }

    .table-responsive::-webkit-scrollbar {
        height: 8px;
    }

    .table-responsive::-webkit-scrollbar-track {
        background: #d3d3d3;
        border-radius: 32px;
    }

    .table-responsive::-webkit-scrollbar-thumb {
        background: #001f47;
        border-radius: 32px;
    }

    .table-responsive {
        padding-bottom: 15px;
    }
}

/* Override table-responsive overflow property */
/* .table-responsive {
    overflow-x: visible !important;
    -webkit-overflow-scrolling: auto;
} */

.sidebar {
    position: fixed;
    top: 74px; /* Adjust according to your header */
    left: 0;
    bottom: 0;
    width: 270px;
    z-index: 996;
    
    overflow-y: auto; /* vertical scroll ON */
    overflow-x: hidden; /* no horizontal scroll */
  
    background-color: #fff;
    padding: 20px 0;
    
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    transition: all 0.3s;
  
    /* Scrollbar custom */
    scrollbar-width: thin; 
    scrollbar-color: #aab7cf transparent;
  }
  
  .sidebar::-webkit-scrollbar {
    width: 6px;
  }
  
  .sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
    border-radius: 3px;
  }
  
  .sidebar::-webkit-scrollbar-track {
    background: transparent;
  }
  
  
  
  
  /* .toggle-sidebar.no-scroll .main {
    transform: translateX(209px) !important;
    max-width: calc(100% - 262px);
  }
  
  body .main {
    transform: translateX(9px) !important;
    max-width: calc(100% - 82px);
  } */
  
  /* Style for the sidebar menu item */
  .nav-item {
    position: relative;
    padding: 10px 15px;
    cursor: pointer;
  }
  
  /* Tooltip styling */
  .tooltipbar_right {
    position: absolute;
    right: -231px !important;
    top: 100%;
    transform: translateY(-50%);
    background-color: #fff;
    color: #001f47;
    padding: 8px 15px;
    border-radius: 5px;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2147483647 !important;
    width: 230px;
  }
  /* Show tooltip on hover */
  .nav-item:hover .tooltipbar_right {
    display: block !important; /* Show tooltip when hovering */
  }
   /* .sidebar .btn:not(.dropdown-toggle):hover {
    transform: none !important;
  } */
  /* Optional: Add a little arrow to the tooltip */
  .tooltipbar_right::after {
    /* content: ''; */
    position: absolute;
    top: 50%;
    right: -8px; /* Arrow will be outside the tooltip */
    transform: translateY(-50%);
    border-left: 8px solid #001f47; /* Arrow color matches tooltip background */
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  
  
  /* Tooltip styling */
  .tooltipbar_right2 {
    /* right: -241px !important; */
    top: 370% !important;
  }
  .tooltipbar_right3 {
    right: -231px !important;
    /* top: 170% !important; */
  }
  
  
  .sidebar,
  .sidebar-nav,
  .nav {
    overflow: visible !important;
  }
  .setting_ul_div {
    margin-left: 0px;
    padding-left: 0px;
  }
  .setting_ul_div li > a  {
    /* color: #001f47 !important; */
  }
  .setting_ul_div li > a span  {
    /* color: #001f47 !important; */
    display: block !important;
  
    padding: 6px 6px;
  }
  .setting_ul_div .bi-circle::before {
  display: none;
  }
  
  .bi-chevron-right::before {
    content: "\f285";
    margin-left: 5px;
  }
  
  /* .sidebar a:hover {
    color: #011735;
    text-decoration: none;
  }
  .sidebar a:active {
    color: #dc3545 !important;
    text-decoration: none;
  }
  .setting_ul_div li > a:hover {
    color: #dc3545 !important;
  }
  .setting_ul_div li > a:active {
    color: #dc3545 !important;
  } */
  
  
 /* .sidebar-nav .nav-link:hover, .sidebar-nav a.active {
    color: #dc3545 !important;
  }*/
  
  
  /*--------------------------------------------------------------
  # Sidebar
  --------------------------------------------------------------*/
  /* Sidebar width when open */
  /* Default layout */
  
  
  
  
  
  
  
  
  .sidebar {
    position: fixed;
    top: 74px;
    left: 0;
    left: -300px;
    bottom: 0;
    width: 270px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
  }
  
  .toggle-sidebar .sidebar-overlay {
      opacity: 1;
      visibility: visible;
  }
  
  .sidebar-overlay {
      position: fixed;
      top: 74px;
      left: 0;
      width: 100%;
      height: 100%; 
      background: rgba(0, 0, 0, 0.8); 
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  
  /* .no-scroll {
      overflow: hidden;
      height: 100vh;
  } */
  
  
  
  .hamburger_bar {
      display: inline-block;
      height: 2px;
      background: #fff;
      width: 25px;
      position: relative;
      transition: 0.3s ease-in-out;
  }
  
  .hamburger_bar::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: -8px;
    transition: 0.3s ease-in-out;
  }
  
  .hamburger_bar::after {
      content: "";
      display: inline-block;
      width: 100%;
      height: 2px;
      background: #fff;
      position: absolute;
      bottom: -8px;
      transition: 0.3s ease-in-out;
  }
  
  
  .active .hamburger_bar {background: transparent;}
  
  .active .hamburger_bar::before {
      transform: rotate(45deg) translate(6px, 6px );
  }
  
  .active .hamburger_bar::after {
      transform: rotate(-45deg) translate(5px, -6px );
  }
  
  
  /* @media (max-width: 1199px) {
    .sidebar {
      left: -300px;
    }
  } */
  
  .sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
  }
  
  .sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
  }
  
  .sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  /* .sidebar-nav.submenu-nav {
    padding-left: 20px;
  } */
  
  .sidebar-nav .nav-item {
    margin-bottom: 5px;
  }
  
  .sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #899bbd;
    font-weight: 600;
    margin: 10px 0 5px 15px;
  }
  
  .sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #899bbd;
    transition: 0.3;
    padding: 10px 15px;
    border-radius: 4px;
  }
  
  .sidebar-nav .nav-link i {
    font-size: 16px;
    margin-right: 10px;
    color: #899bbd;
  }
  
  .sidebar-nav .nav-link.collapsed {
    color: #899bbd;
    background: #fff;
    /* background: transparent; */
  }
  
  .sidebar-nav .nav-link.collapsed i {
    color: #899bbd;
  }
  
  .sidebar-nav .nav-link:hover,
  .sidebar-nav .nav-link.active {
    /* color: #4154f1; f6f9ff*/
    color: #001f47;
    background: #e8eefb; 
  }

  .sidebar-nav .submenu-nav .nav-link.active {
    color: #001f47;
    background: transparent; 
  }
  
  .sidebar-nav .nav-link:hover i,
  .sidebar-nav .nav-link.active i {
    color: #001f47;
  }

  .toggle-sidebar .sidebar-nav .nav-link i.bi-chevron-right {
    transition: 0.3s ease-in-out;
    transform: rotate(90deg);
  }

  .toggle-sidebar .sidebar-nav .nav-link.collapsed i.bi-chevron-right {
    transform: rotate(0deg);
    position: unset;
  }

/*  .toggle-sidebar .sidebar-nav .nav-link i.bi-chevron-right {
    transition: 0.3s ease-in-out;
  }*/
  
  .sidebar-nav .nav-link .bi-chevron-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
  }
  
  .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
  }
  
  .sidebar-nav .nav-content {
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none;
  }
  
  .sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #899bbd;
    transition: 0.3;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
  }
  
  .sidebar-nav .nav-content a i {
    font-size: 6px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
  }
  
  .sidebar-nav .nav-content a:hover,
  .sidebar-nav .nav-content a.active {
    color: #001f47;
  }
  
  .sidebar-nav .nav-content a.active i {
    background-color: #001f47;
  }
  
  .toltip_wrap {
    position: relative;
  }
  
  .tooltip {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 10px;
    background-color: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 10;
  }
  
  .toltip_wrap:hover .tooltip {
    opacity: 1;
    visibility: visible;
  }

  /*---- Changes css ----*/

  section.dashboard .card-title {
    position: sticky;
    top: 0;
    z-index: 9;
    border-radius: 12px;
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.06);
    font-size: 20px;
    font-weight: 700;
    padding: 12px 32px; 
    margin: 20px auto 0px auto;
    max-width: 100%;
    width: 100%;
    text-align: center;
    background-image: Linear-gradient(to right, #cfe2ff, #e8f1ff);
    transition: all 0.4s ease;
}

.dashboard select, .dashboard input.form-control, .dashboard textarea {
/*    width: 100%;*/
    padding: 14px 16px !important;
    font-size: 14px;
    border-radius: 12px;
    border: 1px solid rgb(213, 216, 220) !important;
    color: rgb(17, 17, 17);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 2px !important;
    transition: border-color 0.2s, outline 0.2s;
    outline: none;
    background: #fff;
}

.dashboard select:focus, .dashboard input.form-control:focus, .dashboard textarea:focus {
    outline: 2px solid red;
}

.dashboard select[readonly]:focus, .dashboard input.form-control[readonly]:focus, .dashboard textarea[readonly]:focus {
    outline: none;
}

.collapseble_box, .collapseble_box {
    position: absolute;
    top: 0;
    left: 100%;
/*  transform: translateY(-50%);*/
    background-color: #fff;
    color: #001f47;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2147483647 !important;
    width: 230px;
    display: none;
}

.has_dropdown:hover .collapseble_box {
    display: block;
    height: max-content !important;
}

.collapseble_box .sidebar-nav .nav-link {
    justify-content: start;
}

.collapseble_box .sidebar-nav .nav-link span {
    display: block;
}

.collapseble_box .sidebar-nav ul {  
    text-align: left;
    padding-left: 0;
}

.toggle-sidebar .collapseble_box {
    position: unset;
    box-shadow: none;
    display: unset;
    padding: 0;
    width: 100%;
}

.sidebar-nav .nav-link i.bi.bi-chevron-right.ms-auto {
    position: absolute;
    right: 2px;
}

/*.collapseble_box.collapse.collapse:not(.show), .collapseble_box.collapse.collapse.show {
    display: none;
}*/

.toggle-sidebar .collapseble_box {
    display: block;
}

.toggle-sidebar .collapseble_box.collapse:not(.show) {
    display: none;
}

.toggle-sidebar ul.sidebar-nav.submenu-nav {
    padding-left: 20px;
}

.table th {
    text-align: center;
}

table tbody tr:nth-child(2n):hover td, table tbody tr:nth-child(2n):hover th {
    background-color: rgb(240, 240, 240);
}

table.table tbody tr td {
    padding: 8px 10px;
}

.input-group span {
    padding: 14px 16px !important;
    font-size: 15px;
    border-radius: 12px 0px 0px 12px;
    color: rgb(17, 17, 17);
    transition: border-color 0.2s, outline 0.2s;
    outline: none;
    overflow: hidden;
}

.btn {
    line-height: 39px;
    font-size: 15px;
    border-radius: 10px;
}

.card-header {
    color: #0b2447;
    background: #f1f5fb;
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 14px;
}

.card-header h5{
    font-weight: 600;
    font-size: 16px;
}

section.dashboard .with_button .card-title {
    width: auto;
    flex-grow: 1;
}

section.dashboard .with_button {
    gap: 20px;
}

/* PTP POrtal Changes */

.ptp_details_card {
    max-width: 1080px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.ptp_details_card .card_content {
    height: calc(var(--vh, 1vh)* 100 - 255px);
    overflow: overlay;
}

.ptp_details_card .card_content .inner_content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
    padding: 15px 15px 15px;
    max-width: 860px;
    margin: 10px auto 0px auto;
}

.top_header_ptp {
    padding: 15px 15px;
    margin: 0px 0 0px !important;
    box-shadow: 0px 2px 9px -6px rgba(0 0 0 / 47%);
    position: relative;
    z-index: 5;
}

.ptp_details_card .card-head-title h5 {
    font-weight: 600;
    font-size: 16px;
    color: #0b2447;
    background: #f1f5fb;
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 14px;
    text-align:  center;
}

.cjb_card_container .card-body {
    padding: 15px 20px;
}

.bg_gray {
    background-color: #f8f9fa !important;
}

.accordion-item .accordion-button {
    background: #f6f9ff;
    color: #012970;
}

.ptp_details_card .card-header {
    margin-bottom: 0px;
}


/* Hide Dropdown When Sidebar Collapse Minimize */
/*.collapseble_box, .collapseble_box.show {
    display: none;
}

.toggle-sidebar .collapseble_box.show {
    display: block !important;
}*/


.pagination-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 5px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.pagination li {
    flex: 0 0 auto;
}
