/* Expand the MainContent to fill screen height */

:root { 
  --hdr: 140px; --ftr: 30px; 
  --sidebar-w-expanded: 225px;   /* sidebar open */
  --sidebar-w-collapsed: 75px;   /* sidebar collapsed (set 0 if it fully hides) */
  --dt-row-h: 35px; 			 /* DtatTable Minimum Row Height  */
}

#page-wrapper {
    padding: 0 5px;
}


#mainContentxx {
  height: calc(100vh - var(--hdr) - var(--ftr));
  padding-bottom: var(--ftr);
  display: flex;
  flex-direction: column;  
  overflow: auto;
}

/* Remove the negative margin on the mainContent row */
#mainContent > .row { margin-left: 0; margin-right: 0; }

/* Remove the MainContent Padding */
#mainContent .row > [class^="col-"]:first-of-type,
#mainContent .row > [class*=" col-"]:first-of-type {
  padding: 0px;
}


/* Current sidebar width, switches with body.mini-navbar */
body { --sidebar-w: var(--sidebar-w-expanded); }
body.mini-navbar { --sidebar-w: var(--sidebar-w-collapsed); }

/* Top Bar Links */
.nav.navbar-right > li > a {
    color: #999c9e !important;
}

.nav.navbar-right > li > a:hover {
    color: #424242 !important;
}



/* Footer fixed to bottom, starts after sidebar */
.navbar-fixed-bottom,
.fixed-bottom {
  position: fixed;
  bottom: 0;
  right: 0;
  left: var(--sidebar-w);
  width: auto;
  z-index: 1030;
  transition: left .2s ease, background-color .2s ease, box-shadow .2s ease;
  min-height: 30px;
  background-color: rgba(255,255,255,.18);
  box-shadow: none;
}

.navbar-fixed-bottom .ci-footer-bar,
.fixed-bottom .ci-footer-bar {
  position: relative;
  font-size: 10px;
  min-height: 30px;
  line-height: 24px;
  padding: 3px 10px;
  background-color: transparent;
}

.navbar-fixed-bottom:hover, .fixed-bottom:hover {
  background-color: rgba(255,255,255,.85);
  box-shadow: 0 -1px 4px rgba(0, 0, 0, .08);
  cursor: pointer;
}

.ci-footer-left,
.ci-footer-right {
  position: relative;
  z-index: 1;
  color: rgba(0, 0, 0, .15);
  transition: color .2s ease;
}

.navbar-fixed-bottom:hover .ci-footer-left,
.navbar-fixed-bottom:hover .ci-footer-right,
.fixed-bottom:hover .ci-footer-left,
.fixed-bottom:hover .ci-footer-right {
  color: rgba(0, 0, 0, .75);
}

.ci-footer-left {
  float: left;
}

.ci-footer-right {
  float: right;
}

.ci-footer-countdown {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  min-width: 220px;
  font-weight: 600;
  color: rgba(0, 0, 0, .15);
  background: transparent;
  padding: 0 6px;
  border-radius: 0;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
}

.navbar-fixed-bottom:hover .ci-footer-countdown,
.fixed-bottom:hover .ci-footer-countdown {
  color: rgba(0, 0, 0, .75);
  background: transparent;
}


/* Placeholder Styles */

::-webkit-input-placeholder { /* Edge */
    color: #cecece;
    font-size:13px;  
}

:-ms-input-placeholder { /* Internet Explorer */
    color: #cecece;
    font-size:13px;    
}

::placeholder {
    color: #cecece !important;
    font-size:13px;    
}


/* Template Overrides */
.form-control,
.form-select,
.single-line {
    padding: 3px 6px !important;
    border-radius: .25rem;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus,
.single-line:focus {
    border-color: #1ab394;
    box-shadow: 0 0 0 1px rgba(26, 179, 148, .12), 0 2px 6px rgba(31, 45, 61, .10);
    outline: 0;
}

select.form-control,
select.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #ffffff;
    background-image: linear-gradient(45deg, transparent 50%, #7a8692 50%), linear-gradient(135deg, #7a8692 50%, transparent 50%);
    background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    cursor: pointer;
    padding-right: 34px !important;
}

.form-group {
    margin-bottom: 1rem;
}

/* Loading Overlay */
.overlay {
  display: none;                /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(119, 119, 119, 0.6);

  /* prepare flex centering, but not active yet */
  justify-content: center;
  align-items: center;
}

html.loading, body.loading, .wrapper-content.loading {
  overflow: hidden;
}

/* When loading is active, the overlay becomes visible and centred. */
html.loading .overlay, body.loading .overlay, .wrapper-content.loading .overlay {
  display: flex;
}

.loader {
  color: #ffffff;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.5em solid rgba(255, 255, 255, 0.2);
  border-right: 0.5em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);
  border-left: 0.5em solid #ffffff;
  transform: translateZ(0);
  animation: load1 1.1s infinite linear;
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

@-webkit-keyframes load1 {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes load1 {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* LOADER - Oscillating Lines */
/* .loader,
.loader:before,
.loader:after {
  background: #ffffff;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: #ffffff;
  text-indent: -9999em;
  top: 50%;
  margin: -50px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
} */


/* Swap User */

.dropdown.swapuser {
  background: #ffffff;
  border-radius: 5px;
}

/* Reusable scrollable dropdown */
.dropdown.swapuser > .dropdown-menu.scrollable {
  /* approx single-item height; tweak if your items are taller */
  --item-h: 2.25rem;
  --rows: 8;                    /* show up to 8 items, then scroll */
  max-height: calc(var(--rows) * var(--item-h));
  overflow-y: auto;
  overscroll-behavior: contain; /* nicer trackpad/phone scrolling */
}


/* Missing in DataTable Definitions */

th.dt-head-right { text-align:right; }
.dt-right { text-align:right; }
td.dt-body-right { text-align:right; }
th.dt-head-left { text-align:left; }
.dt-left { text-align:left; }
td.dt-body-left { text-align:left; }
th.dt-center { text-align:center; }
.dt-center { text-align:center; }
td.dt-body-center { text-align:center; }

table.dataTable th.dt-actions-column, table.dataTable td.dt-actions-column {
    padding: 0px;
    min-width: 150px;
}

/* Table Overrides */
.table-responsive { 
  /* AG Removed  - to fix dropdown showing scrolls*/
  /* min-height: 300px !important;
  min-height: 30vh; */
}

/* Table Hover Override */
.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,.175);
    cursor: pointer;
}

table.dataTable tbody>tr.selected, 
table.dataTable tbody>tr>.selected, 
.tablerow-selected {
    background-color: #1ab39444 !important
}

.table-booting { visibility: hidden; }

div.dt-container div.dt-layout-row {
	margin: .5em 0;
}

.dt-container table.dataTable tbody tr {
  height: var(--dt-row-h);   
}
.dt-container table.dataTable tbody td {
  vertical-align: middle;
}

/* Keep length + search on the same line even on xs screens */
.dt-container .dt-layout-row:first-child{
  display:flex; align-items:center; flex-wrap:nowrap;
}
.dt-container .dt-layout-row:first-child .dt-length,
.dt-container .dt-layout-row:first-child .dt-search{
  flex:0 0 auto; white-space:nowrap;
}
.dt-container .dt-layout-row:first-child .dt-search{ margin-left:auto; }

.dataTable .drop-down {
    display: inline;
}

/* DataTable Buttons - Print BG */
.dt-white-bg {
  background: #ffffff !important;
}

/* DataTable Button Overrides - Icon Only Buttons */ 
.dt-button.btn-icon-only{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: .25rem .15rem !important; 
  min-width: auto;
  margin-bottom: 0.1rem !important;
}

.dt-buttons > .dt-button:last-child{
  margin-right: .7rem !important;
}

.dt-button.btn-icon-only:hover,
.dt-button.btn-icon-only:active{
  background: transparent !important; 
}

.dt-button.btn-icon-only i{
  font-size: 1.6em;  
  line-height: 1;
}

.dt-button.btn-icon-only:focus-visible{
  outline: 2px solid #1ab39444 !important;
  outline-offset: 2px;
}



@media (max-width: 360px){
  .dt-container .dt-layout-row:first-child{ flex-wrap:wrap; }
}

#tblList_wrapper .dt-search {
	/*padding-right: 15px;
	border-right: solid 2px #198754;*/
	margin-right: 5px;
}

/* DIV overlay with a spinner  */
div.dataTables_processing {
  position: absolute;
  inset: 0;
  display: flex !important;     
  align-items: center;
  justify-content: center;
  background: rgba(211, 87, 87, 0.6);
  z-index: 10;
}

/* Dropzone Overrides */

.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 8px;
    left: 50%;
    top: 50%;
    margin-top: 30px;
    width: 80px;
    margin-left: -40px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transform: scale(1);
    border-radius: 4px;
    overflow: hidden;
}

.dropzone-errorfile-label-UploadedAs
{
	background-color: #ffbfd0;
	border: 1px solid #ffffff;  
	padding: 5px 5px;
}

.dropzone-errorfile-label-RenamedTo
{
	background-color: #a4e1d5; 
	border: 1px solid #ffffff; 
	padding: 5px 5px;
}

.dropzone-errorfile-data
{
	background-color: #efefef;
	border: 1px solid #ffffff; 
	padding: 5px 5px;
	font-family: Courier New,Courier;
	white-space: pre-wrap;
}



/* Overrides - General */
body {
    margin: 0;
    background-color: #47494b !important;
    --dropzonecolour: #1ab394;
}

.nav > li.active {
    border-left: 4px solid #19aa8d;
    background: #47494b !important;
}

ul.nav-second-level {
    background: #47494b !important;
}

.navbar-default .nav > li > a:hover, .navbar-default .nav > li > a:focus {
    background-color: #47494b !important;
    color: #ffffff !important;
}

.navbar-minimalize.minimalize-styl-2 {
	padding: 10px 12px;
  margin-left: 15px !important;
  height: 40px;
  width: 40px;
  margin-top: 10px;
}

.navbar-static-top .navbar-header {
  display: flex;
  align-items: flex-start;
}

.navbar-static-top .navbar-header > .nav.navbar-top-links {
  display: flex;
  margin: 0;
}

.ci-global-search {
  position: relative;
  display: inline-block;
  width: 260px;
  margin: 13px 0 0 8px;
  vertical-align: top;
  z-index: 2050;
}

.ci-global-search-input {
  position: relative;
}

.ci-global-search-input i {
  position: absolute;
  top: 50%;
  left: 10px;
  color: #9aa3ad;
  transform: translateY(-50%);
  pointer-events: none;
}

.ci-global-search-input .form-control {
  height: 32px;
  padding-left: 32px !important;
  font-size: 12px;
  border-radius: 16px;
}

.ci-global-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: auto;
  width: 520px;
  max-height: 420px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #e5e6e7;
  border-radius: .25rem;
  box-shadow: 0 10px 24px rgba(31, 45, 61, .16);
}

.ci-global-search-results.show {
  display: block;
}

.ci-global-search-section {
  padding: 6px 0;
}

.ci-global-search-section + .ci-global-search-section {
  border-top: 1px solid #edf0f2;
}

.ci-global-search-section-title {
  padding: 5px 12px;
  color: #7a8692;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ci-global-search-item {
  display: block;
  padding: 7px 12px;
  color: #27313a !important;
  text-decoration: none !important;
}

.ci-global-search-item:hover,
.ci-global-search-item:focus {
  background: #f3f6f8;
  color: #1ab394 !important;
}

.ci-global-search-item-title,
.ci-global-search-item-meta {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ci-global-search-item-title {
  font-size: 13px;
  font-weight: 700;
}

.ci-global-search-item-meta,
.ci-global-search-empty {
  color: #7a8692;
  font-size: 12px;
}

.ci-global-search-empty {
  padding: 10px 12px;
}

.ci-global-search-highlight {
  padding: 0;
  background: #fff1a8;
  color: inherit;
  font-weight: 800;
}

@media (max-width: 992px) {
  .ci-global-search {
    width: calc(100vw - 285px);
    min-width: 180px;
    margin-right: 8px;
  }

  .ci-global-search-results {
    width: min(520px, calc(100vw - 24px));
  }
}

.nav > li > a {
    color: #cecece !important;
	text-decoration: none;
}

.nav.nav-tabs:empty { border-bottom: 0; }
.nav.nav-tabs:not(:empty) {
  border-bottom: 1px solid var(--bs-nav-tabs-border-color, var(--bs-border-color));
}

.nav-tabs>li>a.active {
    background-color: #1ab394 !important;
    border: solid 1px;
    color: #ffffff !important;
    border-color: #1ab394 #1ab394 #fff !important;
}

.tab-content  {
	padding-top: 0.75em;
}
	
.footer {
	font-size: 9px;
    padding: 5px 10px !important;
	opacity: 0.3 !important;
	filter: alpha(opacity=30) !important; /* For IE8 and earlier */	
}

.footer:hover {
	font-size: 9px;
	opacity: 1.0 !important;
	filter: alpha(opacity=100) !important; /* For IE8 and earlier */	
}


.h1, .h2, .h3, h1, h2, h3 {
    /*margin-top: 12px !important; 
    margin-bottom: 8px !important;*/
}

#plhLanding_PendingWorkList > .todo-list.small-list  > li > a.todo-list
{
  margin-left: 0px; 
}

#plhLanding_PendingWorkList > .todo-list.small-list > li > a, 
#plhPendingWork_PendingWorkList > .todo-list.small-list > li > a
{
  font-size: 13px !important;
  text-decoration: none !important;
}

#plhPendingWork_PendingWorkList > .todo-list.small-list > li > a
{  
  margin-left: 0;
}

#plhLanding_PendingWorkList > .todo-list.small-list > li {
    background: #f3f3f4;
    border-left: none;
    border-right: none;
    border-radius: 2px;
    color: inherit;
    margin-bottom: 3px;
    padding: 3px 2px 3px 1px !important;
}

/* Overrides - Login */
body.login  {
	background-color: #f3f3f4 !important;
}

.middle-box logo {
    font-size: 100px !important;
}

.ci-password-field {
  position: relative;
}

.ci-password-field .form-control {
  padding-right: 42px;
}

.ci-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #7a8692;
  cursor: pointer;
  padding: 0;
}

.ci-password-toggle:hover,
.ci-password-toggle:focus {
  color: #1ab394;
  outline: none;
}

.logo {
	margin-bottom: 0;
	width: 150px;
	height: 15p0px;
	background-image: url('');	
	background-size: cover;  
}


.nav-header {
    background-color: #2f4050;
    background-image: url('../img/img_profileBg.png') !important;
}

/* Overrides - Pages */
.page-heading {
  padding: 0px 10px 0px 0px !important;
	margin: -10px 0px 0px 0px !important;
}

.breadcrumb {
    margin-top: -2px !important;
	margin-bottom: 5px !important;
	font-size: 11px;
}

.wrapper-content {
    padding: 5px 0px 30px 0px !important;
}

.ibox {
	margin-bottom: 0px !important;
}

.ibox-tools {
	/* top: 10px !important; */
}

/* JMP - 2025-09-05 Fixing titles in lower table as well
.ibox-tools-bottom {
    border-top: 1px solid #c4c4c4 !important;
} */

.ibox-content {
    /*padding: 15px 5px 30px 5px !important;*/
	padding: 0px 5px 0px 5px !important;
}

.ibox-tools a {
	color: #999c9e !important;
}

.ibox-tools a:hover {
    color: #424242 !important;
}


.dataTables_info {
	float: left;
}

.dataTables_paginate {
	float:right;
}

.modal-header {
	background-color: #d1d1d1 !important;
	padding: 0.5rem 1rem 0.5rem 1rem !important;	
}

.modal-header-warning {
	background-color: #ed5565 !important;
	padding: 0.5rem 1rem 0.5rem 1rem !important;	
}

.modal-title {
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}

.modal-title-warning {
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}

.modal-footer .btn.btn-primary,
.modal-footer .btn.btn-Grey
{
  min-width: 100px;
}

.modal-footer .btn.btn-rework
{
  background-color: #c58916;
  border-color: #c58916;
}

.moduleHeading h2:first-of-type {
    float: left;
}

.moduleHeading h2:last-of-type {
    float: right;
}

.moduleHeadingTitle
{
	font-weight: 900;
  margin: 15px 0 5px 0px;
}

.profile-page .profile-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 6px;
}

.profile-page .profile-heading-avatar {
  width: 58px;
  height: 58px;
}

.profile-page .profile-heading-name {
  display: block;
  color: #1f2d3d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.profile-page .profile-heading-role {
  display: block;
  color: #7a8692;
  font-size: 12px;
  font-weight: 600;
  margin-top: 3px;
}

.profile-page-title {
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  margin: 14px 0 6px;
}

.profile-page #mainContent {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.profile-card {
  background: #ffffff;
  border: 1px solid #e1e5ea;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(31, 45, 61, .03);
  margin-bottom: 16px;
  padding: 24px;
}

.profile-summary-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 126px;
}

.profile-summary-main {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.profile-card-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-summary-text {
  min-width: 0;
}

.profile-summary-name {
  color: #111827;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.profile-summary-role {
  color: #27313a;
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
}

.profile-summary-location {
  color: #9aa3ad;
  font-size: 13px;
  font-weight: 600;
  margin-top: 3px;
}

.profile-card-actions {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 90px;
}

.profile-card-actions a,
.profile-card-actions button {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 5px 12px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #7a8692 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.profile-card-actions a:hover,
.profile-card-actions button:hover {
  border-color: #1ab394 !important;
  color: #1ab394 !important;
}

.profile-card-title {
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 20px;
}

.profile-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
  row-gap: 24px;
}

.profile-field-grid.address {
  column-gap: 56px;
  row-gap: 20px;
}

.profile-field.wide {
  grid-column: 1 / -1;
}

.profile-field-label {
  color: #9aa3ad;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.profile-field-value {
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  min-height: 19px;
  overflow-wrap: anywhere;
}

.profile-address-separator:empty {
  display: none;
}

.profile-page .ibox-title {
  min-height: 38px;
  padding: 10px 15px 7px;
}

.profile-page .ibox-content {
  padding: 14px 16px 16px;
}

.profile-page .Profile_Table {
  margin-bottom: 2px;
  background: #ffffff;
  border: 0 !important;
}

.profile-page .Profile_Row {
  min-height: 32px;
  align-items: center;
  border-bottom: 0;
}

.profile-page .Profile_Row:last-child {
  border-bottom: 0;
}

.profile-page .Profile_Label {
  color: #6c757d;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px 6px 6px;
  text-align: right;
  text-transform: none;
}

.profile-page .Profile_Value {
  color: #27313a;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 9px;
  text-align: left;
}

.profile-page .profile-phone-value span + span:before {
  content: " ";
}

.profile-page .Profile_Value .form-control,
.profile-page .Profile_Value select.form-control {
  min-height: 30px;
  height: 30px;
  padding: 3px 8px;
  font-size: 13px;
}

.profile-page #myModal .modal-body {
  padding: 14px 16px;
}

.profile-page #myModal .CI_FormRow {
  align-items: center;
  margin-top: 6px;
}

.profile-page #myModal .CI_FormColumn {
  text-align: right;
  padding-top: 5px;
}

.profile-page #myModal .form-select,
.profile-page #myModal .form-control {
  min-height: 31px;
  font-size: 13px;
}

.ci-select-control {
  appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  background-image: linear-gradient(45deg, transparent 50%, #7a8692 50%), linear-gradient(135deg, #7a8692 50%, transparent 50%);
  background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  border: 1px solid #e5e6e7;
  box-shadow: none;
  cursor: pointer;
  padding-right: 34px !important;
}

.ci-select-control:focus {
  border-color: #1ab394;
  box-shadow: 0 0 0 1px rgba(26, 179, 148, .12), 0 2px 6px rgba(31, 45, 61, .10);
  outline: 0;
}

.profile-page #myModal .form-control[readonly] {
  background-color: #f8f9fa;
  color: #6c757d;
}

.profile-phone-edit {
  display: grid;
  grid-template-columns: minmax(78px, 120px) minmax(0, 1fr);
  gap: 8px;
}

@media (max-width: 768px) {
  .profile-card {
    padding: 18px;
  }

  .profile-summary-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-summary-main {
    gap: 14px;
  }

  .profile-card-avatar {
    width: 62px;
    height: 62px;
  }

  .profile-field-grid {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
}



/* COLOURS */
.darkgray-bg {
	background-color: #47494b !important;	
	color: #e7e8e8;		
}

.lightgray-bg {
	background-color: #e7e8e8 !important;	
	color: #47494b;		
}

/* Dashboard */
.meter_container{
  text-align: center;	
  white-space: nowrap !important;
  max-width: 100%;
  overflow: auto;	
  margin: -20px 0px 0px 0px;
}

.meter_side-by-side {
  float: none !important;
  display: inline-block !important;
  
}

#iboxCertStats.ibox-content {
     background:rgba(255,255,255,0) !important; 
	 border: 0px;
}

/* Dashboard Stat Cards */

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border-radius: 0.75rem;
  color: #fff;
  min-height: 140px;
  background-color: #1c2b36; /* Default navy, override as needed */
}

.stat-content {
  position: relative;
  z-index: 2;
}
  
.stat-label {
  font-size: 1.3rem;
  opacity: 0.6;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.stat-subvalue {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 0.3rem;
}

.stat-icon-bg {
  position: absolute;
  bottom: 0.1rem;
  right: 0.7rem;
  font-size: 3rem;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.bg-completed {
  background-color: #1ab394;
}

.bg-inprogress {
  background-color: #f8ac59;
}

.bg-overdue {
  background-color: #ed5565;
}



/* Side Bar */
.sidebar-content .wrapper, .wrapper.sidebar-content {
  /* padding-right: 275px !important; */
  padding-right: 10px !important; 
}

.media-body {
  font-weight: 600;
}
.noticeiconpad {
	padding-right: 30px !important;	
	width: 30px;
}

.feed-element > a .warning {
	color: #ed5565 !important;
}	

.feed-element > a .info {
	color: #019fc4 !important;
}	

.feed-element > a .check {
	color: #47494b !important;
}


.feed-element > a .icon {
	padding-right: 10px !important;
	width: 40px;
}	

.feed-element > a .media-body {
    text-decoration: none !important;
    color: #676a6c;
    cursor: pointer;	
}

/* ICONS */
a .icn-add {
	color: #999c9e !important;
}

a:hover .icn-add {
	color: #797d80 !important;
}

a .icn-active 
{
	color: #1bb394 !important;
}

a:hover .icn-active {
	color: #168f76 !important;
}


a .icn-deleted 
{
	color: #ed5666 !important;
}

a:hover .icn-deleted {
	color: #e71c31 !important;
}

a .icn-info 
{
	color: #8785e4 !important;
}

a:hover .icn-info 
{
	color: #4d4ad7 !important;
}

/* DataTable */
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  vertical-align: middle;
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
    background-color: #E8E8EA !important;
	border-bottom: 1px solid #00000033 !important;
}

.table>:not(:last-child)>:last-child>* {
	border-bottom: 1px solid #00000033 !important;
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled, table.dataTable thead .sorting_disabled {
    background: #F5F5F6 !important;
}



/* DataTable Buttons */
.btnCIDT {
    font-size: 1.0rem;
    /*padding: 0.15rem 0.15rem 0.15rem 0.15rem;*/
    /*width: 25px;*/
    /* height: 25px; */

    padding: 1px 2px 2px 1px;
    width: 28px;
    height: 28px;
}

/* a.btnCIDT {
    padding: 0.25rem 0.15rem 0.15rem 0.15rem !important;
} */

.CIDTSpacer {
    font-size: 1.0rem;
    padding: 0.15rem 0.15rem 0.15rem 0.15rem;
    width: 5px;
    height: 25px;     
}

.btnCIDT-dropdown {
    font-size: 0.8rem;
    width: 100%;
}

.btn-FileRename { 
    color: #ffffff !important;
    background-color: #a2a2a2;
    border-color: #a2a2a2; 
    /* margin-right: 0.25rem; */
}

.btn-FileDownload{ 
    color: #ffffff !important;
    background-color: #1ab394;
    border-color: #1ab394; 
    /* margin-right: 0.25rem; */
}

.btn-FileDelete{
    color: #ffffff !important;
    background-color: #ed5565;
    border-color: #ed5565; 
    margin-right: 0.25rem;    
}

.btn-DropDown
{
    font-size: 0.9rem;
    /* padding: 0.03rem 0.25rem;  */
    padding: 0.25rem 0.25rem;
    color: #ffffff;
    background-color: #2e3f4e;
    border-color: #2e3f4e;    
    height: 28px;
    width: 32px;
}

.btn-DropDown:hover
{
    color: #ffffff; 
}


.btnDropDown-dropdown {
    font-size: 0.9rem;
    width: 100%;
    text-align: left;
    border-radius: 0;
}

.btnDropDown-dropdown:hover {
    font-size: 0.9rem;
    /* color: #1ab394; */
    width: 100%;
    text-align: left;
    background-color: rgba(0,0,0,.175);
    color: #2e3f4e;
}

/* Round top corners for the first dropdown item */
.dropdown-menu li:first-child .btnDropDown-dropdown {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* Round bottom corners for the last dropdown item */
.dropdown-menu li:last-child .btnDropDown-dropdown {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dropdown-menu .btn.btn-warning:hover,
.dropdown-menu .btn.btn-warning:focus {
  background-color: #f69832;   
  border-color: #f69832;
  color: #fff;
}

.dropdown-menu .btn.btn-danger.btnDelete:hover,
.dropdown-menu .btn.btn-danger.btnDelete:focus {
  background-color: #bb2d3b;   /* darker than --bs-danger (#dc3545) */
  border-color: #b02a37;
  color: #fff;
}

.btn-Transparent 
{
    color: transparent;
    background-color: transparent;
    border-color: transparent;       
}

.btn-Grey
{
    color: #ffffff !important;
    background-color: #a2a2a2;
    border-color: #a2a2a2;    
}

.btn-DarkBlue
{
    color: #ffffff !important;
    background-color: #00345b;
    border-color: #00345b;    
}

.btn-Gold
{
    color: #ffffff !important;
    background-color: #c58916;
    border-color: #c58916;    
}

.btn-Green
{
    color: #ffffff !important;
    background-color: #7ba549;
    border-color: #7ba549;    
}

.btn-Red
{
    color: #ffffff !important;
    background-color: #ed5565;
    border-color: #ed5565;    
}

.btn-info {
  color:#ffffff;
  background-color: #1ab394;
  border-color: #1ab394;;
}

.btn-info:hover {
  color:#ffffff;
  background-color: #1ab394;
  border-color: #1ab394;;    
  box-shadow: inset 0 0 0 9999px rgba(0,0,0,0.2);
}

.btn-danger {
    color: #ffffff !important;
}

/* Inputs */
.show-required {
  position: relative;
  animation: shake .4s linear;
  animation-iteration-count: 1;
  border: 1px solid #ed5565;
  outline: none;
}

select:required:invalid, select:focus:invalid {
    background-image: url(../img/imgAsteriskRedSm.png), linear-gradient(45deg, transparent 50%, #7a8692 50%), linear-gradient(135deg, #7a8692 50%, transparent 50%);
    background-position: calc(100% - 8px) center, calc(100% - 33px) 50%, calc(100% - 28px) 50%;
    background-size: 10px 10px, 5px 5px, 5px 5px;
    background-color: #ffffff;	
    background-repeat: no-repeat;
    padding-right: 52px !important;
    border-right: 3px solid #ed5565;      
  }

select:required:valid {
    background-image: url(../img/imgCheckGreenSm.png), linear-gradient(45deg, transparent 50%, #7a8692 50%), linear-gradient(135deg, #7a8692 50%, transparent 50%);
    background-position: calc(100% - 8px) center, calc(100% - 33px) 50%, calc(100% - 28px) 50%;
    background-size: 10px 10px, 5px 5px, 5px 5px;
    background-color: #ffffff;	
    background-repeat: no-repeat;
    padding-right: 52px !important;
    border-right: 3px solid #cecece;       
  }

input:required:invalid, input:focus:invalid {
    background-image: url(../img/imgAsteriskRedSm.png);
    background-position: calc(100% - 8px) center;
    background-size: 10px 10px;
    background-color: #ffffff;	
    background-repeat: no-repeat;
    padding-right: 28px !important;
    border-right: 3px solid #ed5565;      
  }
input:required:valid {
    background-image: url(../img/imgCheckGreenSm.png);
    background-position: calc(100% - 8px) center;
    background-size: 10px 10px;
    background-color: #ffffff;	
    background-repeat: no-repeat;
    padding-right: 28px !important;
    border-right: 3px solid #cecece;         
  }

  .ci-modal-minheight {
      min-height: 650px;
  }

 .ci-radio{
      padding-right: 80px;
      margin-top: 10px
 } 


/* Badges - Pending Work */
.ci_Badge {
  font-weight: bold;
  width: 21px;
  height: 21px;
  color: #ffffff;
  padding: 3px 0px;
  margin: 0px;
}


.badge.ci_BadgeLegend {
  cursor: pointer;
  transition: box-shadow .15s ease-in-out;
}

.badge.ci_BadgeLegend:hover {
  /* darken only the background */
  box-shadow: inset 0 0 0 9999px rgba(0,0,0,0.2);
}

.pending-worklist-controls {
  padding: 12px;
  background: #f8f9fa;
  border: 1px solid #e4e7ea;
  border-radius: 8px;
}

.pending-worklist-legend-panel {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed #d7dde3;
}

.pending-worklist-legend-panel .ci_BadgeLegend {
  margin: 0 4px 4px 0;
}

.pending-worklist-stats {
  font-size: 12px;
  color: #6c757d;
  line-height: 1.4;
}

.pending-worklist-stat-label {
  font-weight: 600;
  color: #3f4d5a;
}

.pending-worklist-list {
  margin-top: 6px;
}

.pending-worklist-item {
  margin-bottom: 3px;
}

.pending-worklist-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  flex: 1 1 100%;
}

.pending-worklist-main {
  min-width: 0;
  flex: 1 1 auto;
}

.pending-worklist-company {
  font-size: 17px;
  font-weight: 700;
  color: #1f2d3d;
}

.pending-worklist-serial-inline {
  font-size: 14px;
  font-weight: 600;
  color: #3f4d5a;
}

.pending-worklist-meta,
.pending-worklist-note {
  font-size: 12px;
  color: #6c757d;
  margin-top: 4px;
}

.pending-worklist-dates {
  line-height: 1.35;
}

.pending-worklist-days.pending-worklist-overdue {
  color: #c0392b;
  font-weight: 600;
}

.pending-worklist-side {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 56px;
  margin-right: 0;
  margin-left: auto;
  flex: 0 0 auto;
}

.pending-worklist-badges .ci_Badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px 2px 0;
}

.ci_BadgeHover {
  cursor: help;
}

.btn-icon-only {
  min-width: 36px;
  padding-left: 10px;
  padding-right: 10px;
}

#pwlClearFilter {
  border-left: 0;
}

.input-group:focus-within {
  box-shadow: 0 0 0 .2rem rgba(26,179,148,.15);
  border-radius: 4px;
}

.input-group:focus-within .form-control,
.input-group:focus-within .btn {
  border-color: #1ab394;
}

.pending-worklist-link {
  display: flex;
  align-items: stretch;
  padding: 8px 0 8px 12px;
  background: #ffffff;
  border: 1px solid #e4e7ea;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  transition: box-shadow .15s ease-in-out, border-color .15s ease-in-out;
}

.pending-worklist-action {
  width: 30px;
  min-width: 30px;
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #e4e7ea;
  margin-left: 8px;
  color: #6c757d;
  cursor: pointer;
  align-self: stretch;
  flex-shrink: 0;
}

.pending-worklist-action:hover {
  color: #1ab394;
}

.pending-worklist-action .fa-angle-double-right {
  font-size: 16px;
}

/* Bootstrap Switches */
.form-switch .form-check-input {
    width: 2.2em;
    background-color: #ffffff;
    border-color: #5a656b;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%235a656b'/%3e%3c/svg%3e");  
    
}

.form-switch .form-check-input:checked {
    background-color: #5a656b;
    border-color: #5a656b;
}

.form-switch .form-check-input:focus,
.form-switch .form-check-input:checked:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%231ab394'/%3e%3c/svg%3e");  
}

/* Bootstrap Checkbox */
.form-switch .form-check-input{
    /* width: 3em; */
    margin-left: -1.5em;
}

.form-check-input:focus {
    box-shadow: none;
}

.form-check-input:checked {
    background-color: #1ab394;
    border-color: #1ab394
}


/* HTML TextArea & Preview */
#vTemplate_HTML {
    width: 100%;
    height: 100%;
}

.col-sm-9 .textarea-wrap #vTemplate_HTML {
   min-height: 300px;
   
}

.preview-eye{
  position:absolute;
  top: 5px; right:15px;
  z-index:10;
  cursor:pointer;
  opacity:.45;
  transition:opacity .15s ease, transform .15s ease;
  font-size:1.25rem;
  line-height:1;
  padding:.35rem;
  border-radius:9999px;
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(2px);
}
.preview-eye:hover,
.preview-eye:focus{
  opacity:1;
  transform:scale(1.05);
  outline:none;
}

/* New Dashboard */
.dashboard-page {
  color: #27313a;
  --dashboard-kpi-closed: #1ab394;
  --dashboard-kpi-pending: #f8ac59;
  --dashboard-kpi-overdue: #ed5565;
  --dashboard-kpi-issued: #7a8692;
  --dashboard-kpi-open: #2f80ed;
  --dashboard-kpi-attention: #9b59b6;
  --dashboard-indicator-cert: #20c997;
  --dashboard-indicator-review: #4dabf7;
  --dashboard-indicator-approval: #ff922b;
  --dashboard-indicator-snag: #e64980;
  --dashboard-indicator-cycle: #7950f2;
  --dashboard-action: #1ab394;
}

.dashboard-page.dashboard-loading .dashboard-card,
.dashboard-page.dashboard-loading .dashboard-panel,
.dashboard-page.dashboard-loading .dashboard-hero-main {
  position: relative;
  overflow: hidden;
}

.dashboard-page.dashboard-loading .dashboard-card-content,
.dashboard-page.dashboard-loading .dashboard-panel > *,
.dashboard-page.dashboard-loading .dashboard-hero-main > * {
  visibility: hidden;
}

.dashboard-card-loader {
  display: none;
}

.dashboard-tooltip .tooltip-inner {
  max-width: 240px;
  white-space: normal;
  text-align: left;
}

.dashboard-page.dashboard-loading .dashboard-panel:before,
.dashboard-page.dashboard-loading .dashboard-hero-main:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(247,248,249,.78), rgba(239,241,243,.82), rgba(247,248,249,.78));
  background-size: 240% 100%;
  animation: dashboardSkeleton 1.15s ease-in-out infinite;
}

.dashboard-page.dashboard-loading .dashboard-hero-main::after,
.dashboard-page.dashboard-loading .dashboard-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -17px;
  z-index: 3;
  border-radius: 50%;
  border: 3px solid rgba(158, 167, 176, .16);
  border-top-color: rgba(139, 147, 155, .68);
  border-right-color: rgba(177, 183, 188, .34);
  box-shadow: 0 0 0 8px rgba(255,255,255,.10);
  animation: dashboardSpin 1.05s linear infinite;
  pointer-events: none;
}

.dashboard-page.dashboard-loading .dashboard-card-loader {
  position: absolute;
  inset: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.dashboard-page.dashboard-loading .dashboard-card-content {
  opacity: 0;
}

.dashboard-card-spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid rgba(158, 167, 176, .16);
  border-top-color: rgba(139, 147, 155, .68);
  border-right-color: rgba(177, 183, 188, .34);
  animation: dashboardSpin 1.05s linear infinite;
  box-shadow: 0 0 0 8px rgba(255,255,255,.10);
}

@keyframes dashboardSkeleton {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@keyframes dashboardSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 16px;
}

.dashboard-refresh-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: #7a8692;
  font-size: 0.75rem;
}

.dashboard-hero-main,
.dashboard-panel,
.dashboard-card {
  background: #ffffff;
  border: 1px solid #e7eaec;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(31, 45, 61, .06);
}

.dashboard-hero-main {
  padding: 20px;
  min-height: 170px;
}

.dashboard-eyebrow {
  color: #47494b;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.dashboard-title {
  font-size: 27px;
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 700;
  color: #1f2d3d;
}

.dashboard-text {
  color: #5f6b76;
  font-size: 0.8rem;
  line-height: 1.55;
  max-width: 820px;
  margin: 0;
}

.dashboard-health {
  padding: 18px;
}

.dashboard-health-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 2;
  color: #1ab394;
}

.dashboard-health-label {
  color: #5f6b76;
  font-size: 0.8rem;
  margin-top: 6px;
}

.dashboard-progress {
  height: 8px;
  border-radius: 8px;
  background: #edf0f2;
  overflow: hidden;
  margin-top: 16px;
}

.dashboard-progress-bar {
  height: 100%;
  border-radius: 8px;
  background: #1ab394;
}

.dashboard-icon-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dashboard-action);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

.dashboard-icon-action:hover,
.dashboard-icon-action:focus {
  color: #138a72;
  background: transparent;
  box-shadow: none;
  outline: none;
  text-decoration: none;
}

.dashboard-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.dashboard-card {
  min-height: 100px;
  padding: 12px 14px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid var(--dashboard-kpi-closed);
  position: relative;
}

.dashboard-card-ghost {
  position: absolute;
  right: 10px;
  bottom: 6px;
  z-index: 1;
  color: rgba(154, 162, 173, .22);
  font-size: 2.2rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.dashboard-card.warning {
  border-top-color: var(--dashboard-kpi-pending);
}

.dashboard-card.danger {
  border-top-color: var(--dashboard-kpi-overdue);
}

.dashboard-card.neutral {
  border-top-color: var(--dashboard-kpi-issued);
}

.dashboard-card.blue {
  border-top-color: var(--dashboard-kpi-open);
}

.dashboard-card.attention {
  border-top-color: var(--dashboard-kpi-attention);
}

.dashboard-card-title {
  display: block;
  color: #47494b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

.dashboard-card-content {
  position: relative;
  z-index: 2;
}

.dashboard-card-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1f2d3d;
  line-height: 1.1;
  margin-top: 8px;
}

.dashboard-card-note {
  color: #6c757d;
  font-size: 0.75rem;
  line-height: 1.35;
  min-height: 16px;
  margin-top: 4px;
}

.dashboard-card-help-trigger {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 4;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9aa4af;
  cursor: help;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card-open .dashboard-card-ghost {
  color: rgba(122, 133, 146, .22);
}

.dashboard-card-overdue .dashboard-card-ghost {
  color: rgba(122, 133, 146, .22);
}

.dashboard-card-pending .dashboard-card-ghost {
  color: rgba(122, 133, 146, .22);
}

.dashboard-card-closed .dashboard-card-ghost {
  color: rgba(122, 133, 146, .22);
}

.dashboard-card-issued .dashboard-card-ghost {
  color: rgba(122, 133, 146, .22);
}

.dashboard-card-attention .dashboard-card-ghost {
  color: rgba(122, 133, 146, .22);
}

.dashboard-card-help-trigger:hover,
.dashboard-card-help-trigger:focus {
  color: #7f8892;
  outline: none;
  box-shadow: none;
}

.dashboard-top-layout,
.dashboard-bottom-layout {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.dashboard-top-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}

.dashboard-bottom-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-panel {
  margin-bottom: 16px;
  overflow: hidden;
  height: calc(100% - 16px);
}

.dashboard-panel-header {
  padding: 12px 14px;
  border-bottom: 1px solid #e7eaec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-panel-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  color: #1f2d3d;
  text-transform: uppercase;
}

.dashboard-panel-subtitle {
  color: #7a8692;
  font-size: 0.75rem;
  margin: 2px 0 0;
}

.dashboard-panel-body {
  padding: 14px;
}

.dashboard-top-layout .dashboard-panel-header {
  padding: 10px 12px;
}

.dashboard-top-layout .dashboard-panel-body {
  padding: 10px 12px;
}

.dashboard-chart-wrap {
  position: relative;
  min-height: 285px;
}

.dashboard-chart-wrap.small {
  min-height: 230px;
}

.dashboard-indicator-list {
  display: grid;
  gap: 7px;
}

.dashboard-indicator {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 7px 9px;
  background: #f8f9fa;
  border: 1px solid #edf0f2;
  border-radius: 8px;
}

.dashboard-indicator-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--dashboard-indicator-cert);
}

.dashboard-indicator-icon.cert {
  background: var(--dashboard-indicator-cert);
}

.dashboard-indicator-icon.review {
  background: var(--dashboard-indicator-review);
}

.dashboard-indicator-icon.approval {
  background: var(--dashboard-indicator-approval);
}

.dashboard-indicator-icon.snag {
  background: var(--dashboard-indicator-snag);
}

.dashboard-indicator-icon.cycle {
  background: var(--dashboard-indicator-cycle);
}

.dashboard-indicator-title {
  font-weight: 700;
  font-size: 0.8rem;
  color: #47494b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-indicator-note {
  color: #7a8692;
  font-size: 0.75rem;
}

.dashboard-indicator-value {
  font-weight: 800;
  font-size: 1.25rem;
  color: #1f2d3d;
  text-align: right;
}

.dashboard-page #plhLanding_PendingWorkList {
  max-height: 245px;
  overflow-x: hidden;
  overflow-y: auto;
}

.dashboard-page #plhLanding_PendingWorkList .todo-list,
.dashboard-page #plhLanding_PendingWorkList li {
  max-width: 100%;
  overflow-x: hidden;
  white-space: normal;
}

.dashboard-page #plhLanding_PendingWorkList a {
  white-space: normal;
  overflow-wrap: anywhere;
}

.dashboard-installer-list {
  display: grid;
  gap: 12px;
}

.dashboard-installer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.dashboard-installer-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #47494b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-installer-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: #47494b;
}

.dashboard-installer-bar {
  grid-column: 1 / -1;
  height: 7px;
  border-radius: 7px;
  background: #edf0f2;
  overflow: hidden;
}

.dashboard-installer-bar span {
  display: block;
  height: 100%;
  border-radius: 7px;
  background: #1ab394;
}

@media (max-width: 1400px) {
  .dashboard-card-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .dashboard-bottom-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .dashboard-hero,
  .dashboard-top-layout,
  .dashboard-bottom-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-card-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 576px) {
  .dashboard-page.wrapper.wrapper-content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .dashboard-card-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-title {
    font-size: 22px;
  }

  .dashboard-card-value {
    font-size: 26px;
  }

  .dashboard-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-indicator {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .dashboard-indicator-value {
    grid-column: 2;
    text-align: left;
  }
}
