:root {

        --secondary-blue: #003f9c;
        --light-blue: #e8f0ff;
        --bg-color: #f0f2f7;
        --card-bg: #ffffff;
        --text-primary: #333333;
        --text-secondary: #666666;
        --border-color: #e0e0e0;
        --primary-blue: #003f9c;
        --primary-pur: #003f9c;
        --primary-hover: #0053ce;
        --sidebar-bg: #ffffff;
        --sidebar-width: 250px;
        --header-height: 70px;
        /* --bs-body-bg: transparent !important; */
         /* Replace with your image path */
    }


    body {
        font-family: 'Poppins';
        margin: 0;
        padding: 0;
        font-size: 16px;
        background-color: #e0ecff !important;
        /* background-image: url('../../../assets/images/body.png') !important; */
        background-position: top center;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    .form-control:disabled {
    background-color: var(--bs-secondary-bg) !important;
    opacity: 1;
    }
    .border{
        border: 1px solid #000 !important;
    }
    label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-primary);
        font-weight: 500;
        font-size: 14px;
    }
    
    a {
        text-decoration: none !important;
        color: var(--secondary-blue);
    }
    a:hover{
       color: var(--secondary-blue) !important;
    }

    .table a {
        text-decoration: none !important;
    }
    .table a:hover{
        color: #1734a7 !important;
    }

    /* Sidebar menu styles */
    .sidebar li {
        position: relative;
    }

    .sidebar li a {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        color: var(--text-secondary);
        transition: all 0.3s ease;
    }

    .sidebar li a:hover {
        background-color: var(--primary-pur);
        color: var(--sidebar-bg) !important;
    }

    .sidebar li a i {
        margin-right: 10px;
        font-size: 1.1em;
    }

    /* Active menu item */
    .sidebar li a.active {
        background-color: var(--primary-pur);
        color: var(--sidebar-bg) !important;
        font-weight: 500;
    }

    /* Submenu styles */
    .sidebar .submenu {
        display: none;
        background-color: #f8f9fa;
        padding-left: 5px;
    }

    .sidebar .submenu.show {
        display: block;
    }

    .sidebar .has-submenu.active > a {
        background-color: var(--primary-pur);
        color: var(--sidebar-bg) !important;
    }

    .sidebar .submenu li a {
        padding: 8px 15px;
        font-size: 12px;
    }

    .sidebar .submenu li a.active {
         background-color: var(--primary-pur);
        color: var(--sidebar-bg) !important;
    }

    /* Arrow for submenu */
    .sidebar .has-submenu > a::after {
        content: '\f107';
        font-family: 'bootstrap-icons';
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .sidebar .has-submenu.active > a::after {
        transform: rotate(180deg);
    }

    table.table-bordered.dataTable th, table.table-bordered.dataTable td a{
        color: #000 !important;
    }
     table.table-bordered.dataTable th, table.table-bordered.dataTable td a:hover{
        color: #000 !important;
    }
    table.table-bordered.dataTable thead tr:first-child th, table.table-bordered.dataTable thead tr:first-child td {
    border: solid 1px;
}
  
  .table td {
    border: 1px solid #000000 !important; }
.dataTable .page-link:hover {
    z-index: 2;
    color: #FFF !important;
    background-color: #4904d3 !important;
    border-color: #4904d3 !important;
}
.btn{
    transition: all 0.3s ease;
}
.table .btn:hover{
    color: #ffffff !important;
}
    .btnper{
        background-color: var(--primary-pur) !important;
        color: #FFF !important;
    }
    .loginpagenew {
        background: #EFF6FF;
        background: linear-gradient(90deg, rgba(239, 246, 255, 1) 0%, rgba(224, 231, 255, 1) 100%);
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
       
    }

    .loginpagenew .iconbox {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        color: #FFF;
    }

    .loginpagenew .card-body {
        background-color: #FFF;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }

    /* Generator Css */
    .main-content {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }
    .main-content .h3{
        color: #003f9c;
    }
    .left-section {
        flex: 1;
    }

    .page-title {
        margin-bottom: 10px;
    }

    .page-title h2 {
        font-size: 36px;
        color: var(--text-primary);
        margin-bottom: 2px;
        font-weight: 600;
    }

    .page-title h3 {
        font-size: 21.5px;
        color: var(--text-primary);
        margin-bottom: 0px;
        font-weight: 500;
    }

    .page-title p {
        font-size: 16.5px;
        color: var(--text-primary);
        margin: 0;
    }

    .modules-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .module-card {
        background: var(--card-bg);
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        border: 1px solid var(--border-color);
    }

    .module-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .module-icon {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        font-size: 24px;
        color: white;
    }

    .module-icon.blue {
        background: linear-gradient(45deg, #4a90e2, #357abd);
    }

    .module-icon.green {
        background: linear-gradient(45deg, #7ed321, #5cb85c);
    }

    .module-icon.purple {
        background: linear-gradient(45deg, #9013fe, #7b1fa2);
    }

    .module-icon.orange {
        background: linear-gradient(45deg, #ff9500, #ff6b35);
    }

    .module-card h4 {
        font-size: 16px;
        color: var(--text-primary);
        margin-bottom: 8px;
        font-weight: 600;
    }

    .module-card p {
        font-size: 13px;
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.4;
    }

    .page {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 28px;
    align-items: stretch;
    position: relative;
}
.contact-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}
/* Slider (full-width) */
    .slider-wrap{
      grid-column:1 / -1;
      position:relative;
      height:100vh;
      overflow:hidden;
      z-index:1;
    }
    .slides{
      position:absolute;
      inset:0;
    }
    .slide{
      position:absolute;
      inset:0;
      background-size:cover;
      background-position:center;
      opacity:0;
      transform:scale(1.03);
      transition:opacity 1200ms ease, transform 1200ms ease;
      will-change: opacity, transform;
    }
    .slide.is-active{
      opacity:1;
      transform:scale(1);
      z-index:2;
    }

    /* overlay to ensure readability */
    .overlay{
      position:absolute;
      inset:0;
      background: linear-gradient(180deg, rgba(8,18,40,0.18), rgba(8,18,40,0.45)), var(--bg-overlay);
      z-index:1;
      pointer-events:none;
    }

    /* Optional captions/indicators */
    .slider-indicators{
      position:absolute;
      left:32px;
      bottom:26px;
      z-index:6;
      display:flex;
      gap:8px;
      align-items:center;
    }
    .contactbox{
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.card-area {
    position: absolute;
    z-index: 10;
    display: flex;
    top: 25px;
    right: 70px;
    align-items: center;
    justify-content: center;
    padding: 65px 24px;
    pointer-events: auto;
}
    .login-section {
        flex-shrink: 0;
    }

.login-card {
    width: 90%;
    flex: 1;
    margin: 0;
    background: rgba(255, 255, 255, 1);
}
    .login-card {
        background: var(--card-bg);
        border-radius: 16px;
        padding: 15px 30px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
    }

    .login-header {
        text-align: center;
        margin-bottom: 10px;
        display: flex;
    align-items: center;
    justify-content: space-between;
    }
.login-header img {
    height: 70px;
    width: auto;
    display: block;
    border-radius: 6px;
    text-align: center;
}
.login-header h2 {
    color: #1a202c;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.about-section {
    width: 40%;
    position: absolute;
    z-index: 2;
    top: 90px;
    left: 100px;
}
    .login-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 5px;
        color: white;
        font-size: 32px;
    }

    .login-card h3 {
        font-size: 24px;
        color: var(--text-primary);
        margin-bottom: 3px;
        font-weight: 700;
        margin-top: 5px;
    }

    .login-card p {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-primary);
        font-weight: 500;
        font-size: 14px;
    }
    .form-select{
        /* height: 45px !important; */
        background-color: #F3F6FF !important;
        border: 0px solid var(--border-color) !important;
    }
    .form-control {
        background-color: #F3F6FF !important;
        width: 100% !important;
        border: 0px solid var(--border-color) !important;
        padding: 12px 16px !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        transition: border-color 0.2s ease !important;
        height: 45px !important;
    }
select.form-control, select.asColorPicker-input, select, .jsgrid .jsgrid-table .jsgrid-filter-row select, .select2-container--default select.select2-selection--single, .select2-container--default .select2-selection--single select.select2-search__field, select.typeahead, select.tt-query, select.tt-hint{
        outline: 0px solid #a1a1a1 !important;
}
.select2-container{
    width: 100% !important;
}
    .form-control:focus {
        outline: none;
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(59, 89, 152, 0.1);
    }

    .input-group {
        position: relative;
    }

    .input-group-text {
        position: absolute;
        right: 12px;
        top: 50%;
        padding: 0.675rem 0.65rem;
        transform: translateY(-50%);
        background: transparent !important;
        color: var(--secondary-blue) !important;
        border: 0 !important;
        cursor: pointer;
        z-index: 99;
    }

    .captcha-group {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .captcha-display {
        background: var(--light-blue);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 3px 16px;
        font-weight: bold;
        font-size: 16px;
        letter-spacing: 2px;
        color: var(--text-primary);
        min-width: 80px;
        text-align: center;
    }

    .captcha-input {
        flex: 1;
    }

    .captcha-refresh {
        background: none;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 12px;
        color: var(--text-secondary);
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .captcha-refresh:hover {
        background-color: var(--light-blue);
    }

    .form-check {
        margin-bottom: 20px;
    }

    .form-check-input {
        margin-right: 8px;
    }

    .form-check-label {
        font-size: 14px;
        color: var(--text-secondary);
    }

    .forgot-password {
        text-align: right;
        margin-bottom: 20px;
        color: #0000b8;
            font-weight: bold;
    }

    .forgot-password a {
        color: #0000b8;
            font-weight: bold;
        text-decoration: none;
        font-size: 14px;
    }

    .forgot-password a:hover {
        text-decoration: underline;
        color: #0000b8 !important;
            font-weight: bold;
    }

    .btn-login {
        width: 100%;
        background: var(--secondary-blue);
        border: none;
        border-radius: 8px;
        padding: 14px;
        color: white;
        font-size: 16px;
        font-weight: 600;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-login:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(59, 89, 152, 0.3);
    }

    .assign_module form ul {
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .assign_module form ul li {
        float: left;
        list-style: none;
    }

    /* dashboard start here */
    /* Header */
    .header {
        background: #FFF;
        padding: 1rem 0.5rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: var(--header-height);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sticky {
    position: fixed;
    top: 0;
    background-color: #FFF;;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .logo-section {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
.digital-india-logo img {width: 80px;}
   

  

    .brand-text {
        font-weight: 600;
        color: #333;
        font-size: 1.1rem;
    }

    .user-section {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .user-info {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .digital-india-logo {
        margin-left: 0.5rem;
        display: flex;
        align-items: center;
    }
    .digital-india-logo img {
        height: 40px;
        width: auto;
    }

    .select2-container--default .select2-selection--single {
    background-color: #f3f6ff !important;
    border: 0px solid #aaa !important;
    border-radius: 10px !important;
}

.messagessent .cke_1{
    box-shadow: 0px 5px 8px rgba(124, 124, 124, 1) !important;
     border-radius: 25px !important;
     border:solid 1px #000 !important;
}
.sendicon{
    border-radius: 25px !important;
    padding: 7px 8px !important;
    }
 .greenbtn{
background-color: #04D350 !important;
border-color: #04D350 !important;
 }
 .moutargetatag td a:hover{
    color: #fff !important;
 }
 .pending_danger{
    background-color: #ffc0c0 !important;
    border-color: #ffc0c0 !important;
    color: #951b1b !important;
    border-radius: 25px !important;
    padding: 2px 10px !important;
 }
 .select2-container .select2-search--inline .select2-search__field{
       background-color: #f3f6ff;
    border-radius: 10px;
    padding: 5px 10px !important;
    height: 38px !important;
    margin: 0 !important;
 }
 .pdftag{
    background: linear-gradient(135deg, #55efc4, #00cec9);
  color: #FFF;
  display: flex;
  border-radius: 50px;
  padding: 2px 10px;
  line-height: 15px;
  text-align: center;
  align-items: center;
 }
 #progressbar {
  overflow: hidden;
  color: lightgrey;
  display: flex;
  justify-content: center;
}

#progressbar .active {
  background-color: #003f9c !important;
}

#progressbar li {
  list-style-type: none;
  font-size: 14px;
  /* width: 12%; */
  float: left;
  position: relative;
  font-weight: 400;
  background-color: #6f86ab;
    margin-left: 5px;
    margin-right: 5px;
    padding: 10px;
    border-radius: 5px;
    color: #FFF;
}
#progressbar li a{
text-decoration:none;
    color: #FFF;
}
#progressbar li a:hover{
text-decoration:none;
    color: #FFF !important;
}

#progressbar #account:before {
  font-family: FontAwesome;
  content: "\f13e";
  display: none;
}

#progressbar #personal:before {
  font-family: FontAwesome;
  content: "\f007";
  display: none;
}

#progressbar #payment:before {
  font-family: FontAwesome;
  content: "\f030";
  display: none;
}

#progressbar #confirm:before {
  font-family: FontAwesome;
  content: "\f00c";
  display: none;
}

#progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px
}

#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
  display: none;
}

#progressbar li.active:before,
#progressbar li.active:after {
  background: #85bb25
}

.progress {
  height: 20px;
  display: none !important;
}

.progress-bar {
  background-color: #85bb25 !important
}

.fit-image {
  width: 100%;
  object-fit: cover
}
.waring_m{
    color: #c16000 !important;
   
}
.waring_bg{
 background-color: #ffd49e !important
}
.text-blue{
    color: var(--secondary-blue);
}
 .view-only-badge {
            background-color: #6c757d;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        .section-title {
            color: #003f9c;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #003f9c;
        }
        
        
        .info-value {
            color: #333;
            font-size: 1rem;
            font-weight: 600;
            padding: 0.75rem 0;
            border-bottom: 1px solid #e9ecef;
            display: block;
        }
        
        .info-value:empty::after {
            content: '-';
            color: #999;
        }
        
        .address-value {
            white-space: pre-wrap;
            line-height: 1.6;
        }

        /* general info notification */
         .notification-section.creative {
            background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
            border-radius: 18px;
            box-shadow: 0 4px 24px rgba(133, 133, 133, 0.3);
            padding: 0;
            position: relative;
            overflow: hidden;
        }
                                    .notification-header {
                                        display: flex;
                                        align-items: center;
                                        justify-content: space-between;
                                        background: #003f9c;
                                        padding: 16px 20px 12px 20px;
                                        border-radius: 18px 18px 0 0;
                                        color: #fff;
                                        position: relative;
                                    }
                                    .notification-header h3 {
                                        margin: 0;
                                        font-size: 1.25rem;
                                        font-weight: 700;
                                        display: flex;
                                        align-items: center;
                                        gap: 8px;
                                    }
                                    .notification-badge {
                                        background: #ff3366;
                                        color: #fff;
                                        font-size: 0.95em;
                                        font-weight: 600;
                                        border-radius: 50%;
                                        padding: 6px 12px;
                                        box-shadow: 0 2px 8px rgba(255,51,102,0.15);
                                        margin-left: 10px;
                                    }
                                    .notification-list {
                                        list-style: none;
                                        padding: 15px !important;
                                        margin: 0;
                                        max-height: 428px !important;
                                        overflow-y: auto;
                                    }
                                    .notification-item {
                                        display: flex;
                                        align-items: flex-start;
                                        gap: 14px;
                                        padding: 18px 22px 18px 22px;
                                        border-bottom: 1px solid #e3e8f0;
                                        font-size: 1rem;
                                        background: transparent;
                                        transition: background 0.2s, box-shadow 0.2s;
                                        cursor: pointer;
                                        position: relative;
                                    }
                                    .notification-item:last-child {
                                        border-bottom: none;
                                    }
                                    .notification-item:hover {
                                        background: #e0e7ff;
                                        box-shadow: 0 2px 12px rgba(0,63,156,0.08);
                                    }
                                    .notification-icon {
                                        width: 44px;
                                        height: 44px;
                                        border-radius: 50%;
                                        background: #fff;
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        font-size: 1.5em;
                                        box-shadow: 0 2px 8px rgba(0,63,156,0.08);
                                        margin-top: 2px;
                                        transition: box-shadow 0.2s;
                                    }
                                    .notification-item.new .notification-icon {
                                        background: linear-gradient(135deg, #003f9c 60%, #4f8cff 100%);
                                        color: #fff;
                                        animation: pulse 1.5s infinite;
                                    }
                                    .notification-item.info .notification-icon {
                                        background: linear-gradient(135deg, #ffb347 60%, #ffcc80 100%);
                                        color: #fff;
                                    }
                                    .notification-item.report .notification-icon {
                                        background: linear-gradient(135deg, #6ee7b7 60%, #3b82f6 100%);
                                        color: #fff;
                                    }
                                    .notification-content {
                                        flex: 1;
                                        display: flex;
                                        flex-direction: column;
                                    }
                                    .notification-title {
                                        font-size: 0.8rem !important;
                                        font-weight: 600;
                                        color: #003f9c;
                                        margin-bottom: 2px;
                                    }
                                    .notification-item.new .notification-title {
                                        color: #ff3366;
                                    }
                                    .notification-time {
                                        font-size: 0.92em;
                                        color: #888;
                                        margin-top: 2px;
                                    }
                                    @keyframes pulse {
                                        0% { box-shadow: 0 0 0 0 rgba(0,63,156,0.18); }
                                        70% { box-shadow: 0 0 12px 6px rgba(0,63,156,0.10); }
                                        100% { box-shadow: 0 0 0 0 rgba(0,63,156,0.18); }
                                    }
                                    /* Custom scrollbar for notification list */
                                    .notification-list::-webkit-scrollbar {
                                        width: 8px;
                                        background: #e0e7ff;
                                        border-radius: 8px;
                                    }
                                    .notification-list::-webkit-scrollbar-thumb {
                                        background: #b6c6e6;
                                        border-radius: 8px;
                                    }
        /* general info notification */

        .info-section {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
        }

        .info-section .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .info-section .info-item {
            background: white;
            padding: 5px 16px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-blue);
            transition: all 0.3s ease;
        }

        .info-section .info-item:hover {
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .info-section .info-label {
            font-size: 12px;
            color: #6c757d;
            letter-spacing: 0.5px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .info-section .info-value {
                font-size: 16px;
                color: #212529;
                font-weight: 500;
                padding: 0px;
                border: 0;
                line-height: 16px;
        }

@media (max-width: 767.98px) {
        .logo-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .user-section.d-none.d-md-block {
            display: none !important;
        }
        .dropdown-menu {
            margin-top: 0.5rem;
        }
        .card-area {
 
    padding: 10px 0px;
}
.login-header img{
    height: 50px;
}
.page .footer{
    background: #919191;
}
    }
    .user-info p {
        word-wrap: break-word;
        word-break: break-all;
        max-width: 100%;
        overflow-wrap: break-word;
        white-space: normal;
        margin-bottom: 0;
    }

    .user-btn {
        background: var(--secondary-blue);
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
         transition: 0.3s;
    }
 .user-btn:hover{
    box-shadow: 0px 5px 8px rgba(124, 124, 124, 1);
     border-radius: 25px;
 }
    .logout-btn {
        background: transparent;
        border: 2px solid var(--secondary-blue);
        color: var(--secondary-blue);
        padding: 0.4rem 1rem;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
         transition: 0.3s;
    }
    .logout-btn:hover{
        background-color: var(--secondary-blue);
         color: #ffffff;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Sidebar */
    .sidebar {
        position: fixed;
        left: 0;
        top: var(--header-height);
        width: var(--sidebar-width);
        height: calc(100vh - var(--header-height));
        background: #FFF;
        box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .sidebar {
        left: 0;
        /* default visible */
    }

    .sidebar.closed {
        left: -251px;
        /* hides the sidebar */
    }




    .sidebar-menu {
        list-style: none;
        padding: 1rem 0;
        margin: 0;
    }

    .sidebar-menu ul {
        padding-left: 1rem;
    }

    .sidebar-menu li {
        margin: 0.25rem 0;
        list-style-type: none;
    }

    .sidebar-menu a {
        display: flex;
        align-items: center;
        padding: 0.75rem 0.5rem;
        font-size: 14px;
        margin-left: 10px;
        font-weight: bold;
    margin-right: 10px;
        color: #666;
        text-decoration: none;
        transition: all 0.3s ease;
        gap: 0.75rem;
    }

    .sidebar-menu a:hover,
    .sidebar-menu a.active {
        background-color: var(--primary-pur);
        color: var(--sidebar-bg) !important;
        margin-left: 10px;
    margin-right: 10px;
    border-radius: 15px;
    /* Optionally, add a stronger indicator for active */
    font-weight: bold;
    /* Only one .active at a time is handled by JS */
}
    .sidebar-menu ul li a{
        font-size: 12px;
        padding: 0.45rem 0.5rem;
    }
    .sidebar-menu i {
        width: 20px;
        text-align: center;
    }

    .dropdown-arrow {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .dropdown-arrow.rotated {
        transform: rotate(180deg);
    }

    .submenu {
        display: none;
        background: #f8f9fa;
    }

    .submenu.show {
        display: block;
    }

    .submenu a {
        font-size: 0.9rem;
    }
    .dropdown-toggle {
    white-space: pre-wrap !important;
}
.dropdown-toggle::after {
   margin-top: 10px;
    margin-right: 0;
    position: absolute;
    right: 16px;
    transform: translateY(-50%);
}

    /* Main Content */
    .main-content {
        margin-left: 243px;
        margin-top: 70px;
        padding: 0.5rem;
        transition: margin-left 0.3s ease;
    }

    .main-content.shifted {
        margin-left: 0px;
        /* width of the sidebar */
    }


    /* Dashboard Cards */
    .heading_dashboard{
        font-size: 30px;
    }
    .dashboard-card {
        border: none;
        border-radius: 15px;
        padding: 1.5rem;
        height: 150px;
        display: flex;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .dashboard-card:hover {
        transform: translateY(-5px);
        color: #FFF !important;
    }
    a.dashboard-card:hover{
        color: #FFF !important;
    }

    .dashboard-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
    }

    .card-icon {
        font-size: 1.5rem;
        opacity: 1;
        background: white;
        border-radius: 10px;
        padding: 10px 15px;
        color: #000;
    }
    .dashboard-card .card-img {
       width: 55px !important;
  height: 46px;
  opacity: 1;
  background: white;
  border-radius: 10px !important;
  padding: 5px 10px;
        
    }

    .card-content h3 {
        margin: 0;
        font-size: 2rem;
        font-weight: 700;
    }

    .card-content p {
        margin: 0;
          font-size: 18px;
                line-height: 18px;
                font-weight: bold;

    }

.bluebg{
    background-color: var(--secondary-blue) !important;
}

    /* Card Colors */
    .card-blue {
        background: linear-gradient(90deg, rgba(45, 143, 196, 1) 0%, rgba(71, 161, 211, 1) 50%, rgba(84, 170, 218, 1) 100%);
    }

    .card-purple {
        background: linear-gradient(47deg, rgba(86, 112, 201, 1) 0%, rgba(163, 115, 178, 1) 50%, rgba(236, 119, 157, 1) 100%)
    }

    .card-green {
        background: linear-gradient(47deg, rgba(69, 142, 64, 1) 0%, rgba(127, 180, 81, 1) 50%, rgba(173, 210, 83, 1) 100%);
    }

    .card-orange {
        background: linear-gradient(47deg, rgba(255, 111, 83, 1) 0%, rgba(254, 141, 92, 1) 100%);
    }

    .card-gray {
        background: linear-gradient(90deg, rgba(174, 180, 185, 1) 0%, rgba(124, 145, 166, 1) 35%, rgba(99, 126, 153, 1) 100%);
    }

    .card-teal {
        background: linear-gradient(47deg, rgba(48, 90, 201, 1) 0%, rgba(28, 231, 196, 1) 100%);
    }

    .card-oragnetype {
        background: linear-gradient(47deg, rgba(251, 146, 78, 1) 0%, rgba(211, 94, 92, 1) 100%);
    }

    .card-red {
        background: linear-gradient(90deg, rgba(255, 151, 151, 1) 0%, rgba(232, 120, 120, 1) 35%, rgba(225, 89, 89, 1) 100%);
    }

    .card-violet {
        background: linear-gradient(90deg, rgba(165, 134, 238, 1) 0%, rgba(116, 71, 221, 1) 100%);
    }

    .card-redgray {
        background: linear-gradient(90deg, rgb(178 107 204) 35%, rgb(119 76 164) 100%);
    }

    .card-graywhite {
        background: linear-gradient(90deg, rgba(174, 180, 185, 1) 0%, rgba(124, 145, 166, 1) 35%, rgba(99, 126, 153, 1) 100%);
    }

    .card-pinkhuman {
        background: linear-gradient(90deg, rgb(36 66 202) 0%, #007bff 100%);
    }


    /* Performance Updates */
    .performance-section {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .performance-item {
        padding: 1rem;
        border-left: 4px solid #e9ecef;
        margin-bottom: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .performance-item:hover {
        background: #e3f2fd;
        border-left-color: var(--primary-blue);
    }

    .performance-item.success {
        border-left-color: #28a745;
    }

    .performance-item.info {
        border-left-color: #17a2b8;
    }

    .performance-item.warning {
        border-left-color: #ffc107;
    }

    .performance-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1rem;
    }

    .performance-icon.success {
        background: #28a745;
    }

    .performance-icon.info {
        background: #17a2b8;
    }

    .performance-icon.warning {
        background: #ffc107;
    }

    /* .sidebar-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.5);
                display: none;
                z-index: 998;
            }

            .sidebar-overlay.show {
                display: block;
            } */
.swal2-modal .swal2-title{
    color:#000;
}
.swal2-modal .swal2-icon, .swal2-modal .swal2-success-ring{
    margin-top: 0px;
    margin-bottom: 0px;
}
.outlinedefaul_btn{
    background: transparent !important;
    border: 2px solid var(--secondary-blue) !important;
    color: var(--secondary-blue) !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    transition: 0.3s;
}
.outlinedefaul_btn:hover{
    background-color: var(--secondary-blue) !important;
    color: #FFF !important;
    border-radius: 25px !important;
    box-shadow: 0px 5px 8px rgba(124, 124, 124, 1);
    transition: 0.3s;
}
.debtn{background-color: var(--secondary-blue) !important;
    color: #FFF !important;
     transition: 0.3s;
}
    .debtn:hover{background-color: #4307bb;
    box-shadow: 0px 5px 8px rgba(124, 124, 124, 1);
     transition: 0.3s;
     border-radius: 25px !important;
}
    .debtn a:hover,
    .debtn a.active{
        background-color: #4307bb;
     box-shadow: 0px 5px 8px rgba(124, 124, 124, 1);
     transition: 0.3s;
     border-radius: 25px !important;
    }
    
    .btn-danger {
        background-color: #dc3545 !important;
        color: #fff !important;
    }

    .btn-danger:hover {
        background-color: #c82333 !important;
        color: #fff !important;
        box-shadow: 0px 5px 8px rgba(124, 124, 124, 1);
        border-radius: 25px !important;
    }
    .btn-danger a:hover,
    .btn-danger a.active{
        background-color: #c82333;
     box-shadow: 0px 5px 8px rgba(124, 124, 124, 1);
     transition: 0.3s;
     border-radius: 25px !important;
     }

    .dropdown-menu{background-color: #e0ecff;}
    .dropdown-item{color: #000;}
    .dropdown-item:hover{background-color: #e8e8e8;}
    .dropdown-item.active, .dropdown-item:active{background-color: #dcdcdc;}
    .dropdown-menu.show{background-color: #e0ecff;}
    .dropdown .dropdown-menu .dropdown-item{
        padding: 0.55rem 1rem;
    }
    .table .dropdown button:hover{
        color: #000 !important;
    }
   .table .dropdown .dropdown-item:focus, .dropdown-item:hover {
        background-color: #4904d3 !important; 
        color: #ffffff !important;
    }
    .loadergif{
	display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 9999;
height: 100%;
position: absolute;
background: #FFF;
z-index: 999;
}
.datatable{
    height: auto !important;
}
table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td{
    color: #000;
    font-weight: bold;
}
/* drag & drop */
 .drag-handle {
        cursor: move;
        padding: 5px;
        margin-right: 10px;
        color: #666;
    }
    .sortable-placeholder {
        background-color: #f3f3f3;
        height: 40px;
        border: 1px dashed #ccc;
    }
    .draggable-row {
        background-color: #fff;
        transition: background-color 0.2s;
    }
    .draggable-row:hover {
        background-color: #f8f9fa;
    }
    .ui-sortable-helper {
        display: table;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
/* drag & drop */
.bgprimary{
    background-color: #0a58ca !important;
}

/* notification start */
  .notification-wrapper {
            position: relative;
            margin-right: 20px;
        }

        .notification-btn {
            background: transparent;
            border: none;
            color: #4904d3;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            position: relative;
        }

        .notification-badge {
            position: absolute;
            top: 0px;
            right: 0px;
            background: #ff4757;
            color: white;
            border-radius: 50%;
            padding: 0.05rem 0.4rem;
            font-size: 0.75rem;
            font-weight: bold;
        }

        .notification-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            width: 320px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            padding: 20px;
            display: none;
            z-index: 1000;
        }

        .notification-dropdown.show {
            display: block;
        }

        .notification-title {
            color: #333;
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0;
        }

        .notification-subtitle {
            color: #666;
            font-size: 0.875rem;
            margin: 5px 0 15px;
        }

        .notification-list {
            max-height: 300px;
            overflow-y: auto;
        }

        .notification-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #a1a1a1;
        }

        .notification-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notification-icon.success {
            background: #e8f7ed;
            color: #28a745;
        }

        .notification-icon.info {
            background: #e8f4ff;
            color: #007bff;
        }

        .notification-content p {
            margin: 0;
            color: #333;
            font-size: 0.9rem;
        }

        .notification-time {
            color: #888;
            font-size: 0.75rem;
        }

        .view-all {
            display: block;
            text-align: center;
            padding: 10px;
            color: #7367f0;
            text-decoration: none;
            margin-top: 10px;
            font-size: 0.875rem;
        }

        .view-all:hover {
            text-decoration: underline;
        }
/* notification end */
.et_pb_contact_form_label {
	display: block;
	color: black;
	font-weight: bold;
    letter-spacing: 1.2px;
	font-size: 18px;
	padding-bottom: 5px;
}
input[id="et_pb_contact_brand_file_request_0"] {
	display: none;
}
label[for="et_pb_contact_brand_file_request_0"] {
	background: #fff;
	height: 150px;
	background-image: url('https://www.svgrepo.com/show/9488/cloud-upload-signal.svg');
	background-repeat: no-repeat;
	background-position: top 18px center;
	position: relative;
  background-size: 7%;
	color: transparent;
  margin: auto;
	width: 100%;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
	border: 1px solid #a2a1a7;
	box-sizing: border-box;
}
label[for="et_pb_contact_brand_file_request_0"]:before {
	content: "Drag and Drop a file here";
	display: block;
	position: absolute;
	top: 12%;
	transform: translateY(-50%);
	font-size: 14px;
	color: #202020;
	font-weight: 400;
	left:0;
	right:0;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
label[for="et_pb_contact_brand_file_request_0"]:after {
	display: block;
	content: 'Browse';
	background: #16a317;
	width: 86px;
	height: 27px;
  line-height: 27px;
	position: absolute;
	bottom: 19px;
	font-size: 14px;
	color: white;
	font-weight: 500;
	left:0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
label[for="et_pb_contact_brand_request_0"]:after {
	content: " (Provide link or Upload files if you already have guidelines)";
	font-size: 12px;
	letter-spacing: -0.31px;
	color: #7a7a7a;
	font-weight: normal;
}
label[for="et_pb_contact_design_request_0"]:after {
	content: " (Provide link or Upload design files)";
	font-size: 12px;
	letter-spacing: -0.31px;
	color: #7a7a7a;
	font-weight: normal;
}
label[for="et_pb_contact_brand_file_request_0"].changed, label[for="et_pb_contact_brand_file_request_0"]:hover {
  background-color: #e3f2fd;
}
label[for="et_pb_contact_brand_file_request_0"] {
  cursor: pointer;
  transition: 400ms ease;
}
.file_names {
	display: block;
	position: absolute;
	color: black;
	left: 0;
	bottom: -30px;
	font-size: 13px;
	font-weight: 300;
}
.file_names {
  text-align: center;
}

/* chat user communication */
    .chat-container{
        max-height: 400px; 
        overflow-y: auto; 
        border: 1px solid #e0e0e0; 
        border-radius: 12px; 
        padding: 20px; 
        background-color: #f8f9fa;
    }
     .chat-container .message-row{
        display: flex; 
        margin-bottom: 20px;
     }
     .chat-container .message-row .avatar{
        width: 40px; 
        height: 40px;
         background: #4CAF50; 
         border-radius: 50%; 
         display: flex; 
         align-items: center; 
         justify-content: center; 
         color: white; 
         font-weight: bold; 
         margin-right: 12px;
     }
     .chat-container .message-row .message-content{
        flex: 1; 
        max-width: 100%;
     }
      .chat-container .message-row .message-content .message-bubble{
      background: #e8f5e9; 
      padding: 12px 15px; 
      border-radius: 12px 12px 12px 0; position: relative;
     }
      .chat-container .message-row .message-content .message-bubble p{
      margin: 0; color: #2e7d32;
     }
      .chat-container .message-row .message-content .message-bubble small{
     display: block; color: #666; margin-top: 5px;
     }
    .chat-container .message-row .message-content span{
     display: block; font-size: 12px; color: #666; margin-top: 4px;
     }
     .chat-container .message-row .message-content span img{
        filter: invert(1);
        width: 15px;
     }


     .chat-container .message-row1{
    display: flex; flex-direction: row-reverse; margin-bottom: 20px;
     }
     .chat-container .message-row1 .avatar1{
        width: 40px; 
        height: 40px; 
        background: #2196F3; 
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        color: white; 
        font-weight: bold; 
        margin-left: 12px;
     }
     .chat-container .message-row1 .message-content1{
        flex: 1; 
        max-width: 100%;
     }
      .chat-container .message-row1 .message-content1 .message-bubble1{
      background: #e3f2fd; padding: 12px 15px; border-radius: 12px 12px 0 12px; position: relative; margin-left: auto;
     }
      .chat-container .message-row1 .message-content1 .message-bubble p{
     margin: 0; color: #1565c0;
     }
      .chat-container .message-row1 .message-content1 .message-bubble1 small{
     display: block; color: #666; margin-top: 5px;
     }
    .chat-container .message-row1 .message-content1 span{
    display: block; 
    font-size: 12px; 
    color: #666; 
    margin-top: 4px; 
    text-align: right;
     }
     .chat-container .message-row .message-content span img{
        filter: invert(1);
        width: 15px;
     }
     .bellspan {
        top: -4px !important;
    position: absolute;
    padding: 0px 7px;
    color: #FFF;
    font-size: 12px;
    font-weight: bold;
    right: -10px;
}
.expo{
    position: absolute;
    right: 90px;
    top: -42px;
}
  .page-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.3s ease-in-out;
    }

    .page-loader.loaded {
        opacity: 0;
        visibility: hidden;
    }

    .spinner-border {
        width: 3rem;
        height: 3rem;
    }
    .table {
            width: 100%;
            border-spacing: 0;
        }
.select2-container--default .select2-selection--single{
        height: 45px !important;
}
.table-responsive{
    max-height: 75vh;
    overflow: auto;
    /* border-top:1px #000 solid; */
}  
.tabledata {
    position: relative;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    max-height: 75vh;
    border: solid #000 1px;
    overflow: auto;
}

.tabledata thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.tabledata thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #c3cfe2;
    border: 1px solid #000000 !important;
}

.tabledata thead th::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-top: 2px solid #000000;
}

.tabledata thead th::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 0px solid #000000;
}

.table > thead {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

       .table > thead th {
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
            font-size: 14px;
            color: #2d3748;
            letter-spacing: 0.5px;
            background: #c3cfe2;        
            border-top: 0px solid #000000 !important;
        }

      
        .table > tbody tr {
            transition: all 0.3s ease;
        }

        .table > tbody tr:hover {
            background: #f7fafc;
        }

        .table td {
            padding: 20px 15px;
            font-size: 14px;
            color: #4a5568;
        }
        /* report page button */
.badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
.formpagea .btn{
    font-size: 12px !important;
}
        .badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .badge-cpse {
            background: linear-gradient(135deg, #ffd93d 0%, #ffb830 100%);
            color: #744210 !important;
        }
        .badge-pdf {
    background: linear-gradient(135deg, #cdf5ff 0%, #aecbff 100%);
    color: #744210 !important;
}
        .badge-completed {
            background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
            color: white !important;
        }
        .badge-danger{
            background: linear-gradient(135deg, #f5576c 0%, #fb9395 100%);
            color: white !important;
        }

        .badge-ministry {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            color: #2d3748 !important;
        }
        .badge-viewdetail {
            background: linear-gradient(135deg, #91acf4 0%, #d7d6fe 100%);
        }

        .status-completed {
            color: #2193b0;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
        }

        .status-completed::before {
            content: '✓';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            /* width: 15px;
            height: 15px; */
            background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
            color: white;
            border-radius: 50%;
           font-size: 12px;
            padding: 4px 5px 4px 5px;
        }
        .status-danger {
            color: #fb3d54;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
        }

        .status-danger::before {
            content: 'x';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            /* width: 15px;
            height: 15px; */
            background: linear-gradient(135deg, #f66777 0%, #fb3d54 100%);
            color: white;
            border-radius: 50%;
            font-size: 12px;
            padding: 2px 6px 4px 6px;
        }
        .status-pending {
            color: #ffb830;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
        }
        .status-pending::before {
            content: '!';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            /* width: 15px;
            height: 15px; */
            background: linear-gradient(135deg, #ffd93d 0%, #ffb830 100%);
            color: white;
            border-radius: 50%;
           font-size: 12px;
            padding: 2px 6px 2px 6px;
        }
        .btn:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        }

        .btn-dpe {
            border-color: #48bb78 !important;
            color: #48bb78 !important;
        }

        .btn-dpe:hover {
            background: #48bb78 !important;
            color: white !important;
        }

        .btn-difference {
            border-color: #ed8936 !important;
            color: #ed8936 !important;
        }

        .btn-difference:hover {
            background: #ed8936 !important;
            color: white !important;
        }

        .btn-issue {
            border-color: #667eea !important;
            color: #667eea !important;
        }

        .btn-issue:hover {
            background: #667eea !important;
            color: white !important;
        }

        .btn-review {
            border-color: #9f7aea !important;
            color: #9f7aea !important;
        }

        .btn-review:hover {
            background: #9f7aea !important;
            color: white !important;
        }
      .announcements-header marquee{
        font-weight: bold;
        color: #FFF;
      }

      .status-pdf {
            color: #fb3d54;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
        }

        .status-pdf::before {
            content: '📋';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            border-radius: 50%;
            font-size: 20px;
        }
        /* report page button */
        .form-check-input {
  border : var(--bs-border-width) solid #535353 !important
}
.getprof{
        display: flex;
    flex-direction: row-reverse;
    position: absolute;
    top: -35px;
    right: 0px;
}
#featureItem-ts{
    display: none !important;
}
    /* Responsive */
    @media (max-width: 768px) {
    .getprof{
         position: static;
    }
        .main-content {
            margin-left: 0;
        }

        .dashboard-card {
            height: 120px;
            padding: 1rem;
        }

        .card-content h3 {
            font-size: 1.5rem;
        }

        .brand-text {
            display: none;
        }
        
        .main-content .container-fluid div:first-child{
            display: block !important;
        }

        
        .logo-section{
            gap: 0rem;
        }

        .card-area{
          top: 0px;
          right: 0px;
        }
        .login-card {
            width: 100%;
        }
        .about-section{
            top: 31rem;
            left: 0;
            width: 100%;
             padding: 20px 20px 56px 20px;
        }
        .contactbox {
    display: block;
}
.slider-wrap{
    height: 200vh;
}
 .announcements-header marquee{
        text-shadow: 0px 0px 0px #a3a3a3;
        color: #000000;
      }
      .login-header h2 {
        height: 46px;
      }
      
    }

.right-18{
    right: 18rem;
}
.tabletrash{
        padding: 10px 10px;
    text-align: center;
    justify-content: center;
    display: flex !important;
}
.table thead th, .jsgrid .jsgrid-table thead th{
          padding: 0.5rem 0.5rem;
    color: #000 !important;
    vertical-align: middle;
    
}
.table > thead {
    z-index: 9;
}
.table a:hover{
    color: #3a07b0;
}


.table td, .jsgrid .jsgrid-table td{
        padding-top: 5px !important;
    padding-bottom: 5px !important;
}
.border{
    border: solid 1px #000 !important;
}
.bellicon{
    top: 12px !important;
}
.belli{
    right: -6px;
    position: relative;
}
    /* dashboard End here */

    @media (max-width: 992px) {
        .main-content {
            flex-direction: column;
        }

        .login-section {
            width: 90% !important;
            /* max-width: 400px; */
            margin: 0 auto;
        }

        .modules-grid {
            grid-template-columns: 1fr;
        }
    }

    td ul li {
        list-style-type: none !important;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice
    {
            line-height: 30px;
             font-size: 16px;
    }
    .select2-container--default .select2-selection--single, .select2-container--default .select2-dropdown, .select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    }
   
     .table .dropdown ul li a:hover{
        color: #ffffff !important;
         background-color: var(--secondary-blue) !important; 
    }
    .table .dropdown ul li button:hover{
        color: #ffffff !important;
         background-color: var(--secondary-blue) !important; 
    }
    .reject_error{
        border: 1px solid red !important;
    }

table.dataTable thead>tr>th.sorting:before, table.dataTable thead>tr>th.sorting:after, table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_asc:after, table.dataTable thead>tr>th.sorting_desc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>th.sorting_asc_disabled:before, table.dataTable thead>tr>th.sorting_asc_disabled:after, table.dataTable thead>tr>th.sorting_desc_disabled:before, table.dataTable thead>tr>th.sorting_desc_disabled:after, table.dataTable thead>tr>td.sorting:before, table.dataTable thead>tr>td.sorting:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_asc:after, table.dataTable thead>tr>td.sorting_desc:before, table.dataTable thead>tr>td.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc_disabled:before, table.dataTable thead>tr>td.sorting_asc_disabled:after, table.dataTable thead>tr>td.sorting_desc_disabled:before, table.dataTable thead>tr>td.sorting_desc_disabled:after{
    text-align: right;
    right: 0px !important;
}