:root {
  --navbar-height: 80px;
}

@media screen and (max-width: 1200px) {
  :root {
    --navbar-height: 64px;
  }
}

html {
  font-size: 12px;
}

.dayContainer {
  justify-content: unset !important;
  -webkit-justify-content: unset !important;
}

* {
  font-family: BWHaasGroteskWeb, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-variation-settings: normal;
  font-feature-settings: normal;
 
}

a {
  color: #337ab7;
  text-decoration: none;
}

th {
  font-weight: unset !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: break-word;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  margin-bottom: 10px;
}

h2,
.h2 {
  font-size: 30px;
  margin-top: 20px;
}

h3 {
  font-size: 2.4rem;
  padding-top: 10px;
}

hr {
  margin: 20px 0 0 0;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
  opacity: 1;
}

strong {
  font-weight: unset;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

label {
  display: inline-block;
  max-width: 100%;
  /* margin-bottom: 5px; */
  color: var(--text-primary);
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: var(--text-primary);
  background-color: var(--input-bg);
  background-image: none;
  border: 1px solid var(--input-border);
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* Global placeholder styles - make placeholder text clearly faded */
.form-control::placeholder {
  color: var(--input-placeholder, #adb5bd);
  opacity: 0.65;
  font-style: italic;
}

.form-control::-webkit-input-placeholder {
  color: #adb5bd;
  opacity: 0.65;
  font-style: italic;
}

.form-control:-ms-input-placeholder {
  color: #adb5bd;
  opacity: 0.65;
  font-style: italic;
}

.form-control::-ms-input-placeholder {
  color: #adb5bd;
  opacity: 0.65;
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #EFEFEF;
}

.btn:active,
.btn:hover,
.btn:focus {
  background-color: #EFEFEF !important;
}

.btn-info {
  background-color: #023499 !important;
  border-color: #023499 !important;
  color: white;
}

button.btn-info:hover,
button.btn-info:active,
button.btn-info:focus,
button.btn-info[disabled] {
  background-color: #2a53a5 !important;
  border-color: #2a53a5 !important;
  color: white !important;
}

.btn-primary {
  padding: 3px 14px;
  background-color: var(--app-color);
  border-color: var(--app-color);
}

.btn-primary-lg {
  background-color: var(--app-color);
  border-color: var(--app-color);
  color: white;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary[disabled] {
  background-color: var(--app-color-hover) !important;
  border-color: var(--app-color-hover) !important;
  color: white !important;
}

.btn-primary-lg:hover,
.btn-primary-lg:active,
.btn-primary-lg:focus,
.btn-primary-lg[disabled] {
  background-color: var(--app-color-hover) !important;
  border-color: var(--app-color-hover) !important;
  color: white !important;
}

.btn-primary a {
  color: white;
  width: 100%;
  height: 100%;
  display: block;
}

.btn-primary a:hover {
  text-decoration: none;
}

.btn-secondary {
  color: #000 !important;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
  color: #000 !important;
}

.btn-success {
  color: #fff !important;
  background-color: var(--app-color-hover);
  border-color: var(--app-color-hover);
}

.btn-success:hover,
.btn-success:active,
.btn-success:focus {
  color: #fff !important;
  background-color: var(--app-color) !important;
  border-color: var(--app-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
  color: var(--app-color) !important;
  background-color: #e9ecef;
  border-color: var(--app-color);
}

.btn.btn-default {
  color: var(--text-primary);
  background-color: var(--bg-primary);
  border-color: var(--border-color);
}

.btn-close {
  --bs-btn-close-bg: none;
}

.alert {
  padding: 15px 3rem 15px 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  font-size: 1.35rem;
  word-wrap: break-word;
}

.alert-dismissible .btn-close {
  padding: 1.4rem 1rem;
  --bs-btn-close-bg: none;
}

.alert-close-icon {
  font-size: 2.1rem;
  color: #a94442;
}

.navbar-brand {
  display: flex;
  align-items: center;
  height: 100%;
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

.modal-dialog {
  --bs-modal-width: 50vw;
}

@media screen and (max-width: 1000px) {
  .modal-dialog {
    --bs-modal-width: 90vw;
  }
}

.modal-content {
  position: relative;
  background-color: var(--modal-bg);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid var(--modal-border);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-header {
  border-bottom: none;
  padding: 15px;
}

.modal-title {
  font-size: 1.8rem;
}

.modal-body {
  padding: 15px;
  overflow: auto;
}

.modal-footer {
  padding: 15px;
}

.modal-header .btn-close {
  padding: 0;
  margin: 0 0 8px auto;
  outline: none;
  border: none;
}

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

.modal-header .btn-close:active,
.modal-header .btn-close:focus-visible {
  outline: none;
  border: none;
}

.modal-close-icon {
  font-size: 2.1rem;
  color: #a94442;
}

.progress-bar {
  background-color: #0d6efd;
}

.progress,
.progress-stacked {
  border-radius: 0;
  height: 1.5rem;
  max-width: 300px;
}

legend {
  border-bottom: none;
  font-size: 13.5px;
  margin-bottom: 10px;
  width: auto;
  padding: 0 10px;
  text-transform: uppercase;
  color: #6f6f6f;
  float: unset;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* Collapsible legend styles */
legend.collapsible-legend {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + 22px);
  margin-left: -11px;
  margin-right: -11px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  background-color: #f8f9fa;
  transition: background-color 0.2s ease;
}

legend.collapsible-legend:hover {
  background-color: #e9ecef;
}

legend.collapsible-legend .collapse-icon {
  font-size: 12px;
  transition: transform 0.2s ease;
  margin-left: 8px;
}

legend.collapsible-legend[aria-expanded="true"] .collapse-icon {
  transform: rotate(180deg);
}

legend.collapsible-legend[aria-expanded="false"] .collapse-icon {
  transform: rotate(0deg);
}

/* Data indicator for collapsed sections */
.data-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
}

.data-indicator.has-data {
  background-color: #28a745;
}

/* Help icon for fieldsets */
.fieldset-help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 11px;
  font-weight: bold;
  color: #6c757d;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 50%;
  margin-left: 6px;
  cursor: pointer;
  vertical-align: middle;
  transition: all 0.2s ease;
  position: relative;
  z-index: 10;
}

.fieldset-help-icon:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.hidden-input {
  display: none;
}

.modal-body-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

/* header message css */
.header-message {
  width: 100%;
}


/* input configuration */
/* disable input number arrow*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* login page css */
/* Login and Auth related css */
.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.auth-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 350px;
  padding: 30px;
  box-sizing: border-box;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  font-size: 1.35rem;
}

.auth-form {
  width: 100%;
}

.auth-title {
  width: 100%;
  text-align: center;
}

.auth-btn {
  width: 100%;
}

.login-consent {
  font-size: 1.0125rem;
  text-align: center;
  padding: 0 15px;
  margin-top: 10px;
}

.login-theme-toggle {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.login-theme-toggle .theme-toggle-container {
  padding: 6px 10px;
  font-size: 11px;
  gap: 12px;
}

.login-theme-toggle .theme-toggle-label {
  color: var(--text-muted);
}

.login-theme-toggle .theme-switch {
  transform: scale(0.85);
}

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

.forget-pass-container {
  margin-top: 10px;
  margin-bottom: 10px;
}

.auth-sso {
  margin-bottom: 15px;
}

.sso-btn {
  border: none;
  padding: 0;
  outline: none;
  width: 100%;
}

.okta-sso-logo {
  width: 100%;
  height: 40px;
  object-fit: cover;
}

/* Two-panel auth layout (for loginproblem page) */
.auth-panels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.auth-panel {
  flex: 1;
  min-width: 320px;
  max-width: 380px;
  align-self: stretch;
}

.auth-panel .auth-contents {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

/* Vertical separator line between panels */
.auth-panel:first-child .auth-contents {
  border-right: 1px solid var(--border-color);
  padding-right: 40px;
}

.auth-panel:last-child .auth-contents {
  padding-left: 40px;
}

/* Mobile responsive - stack panels vertically */
@media (max-width: 800px) {
  .auth-panels {
    flex-direction: column;
    align-items: center;
  }
  .auth-panel {
    width: 100%;
    max-width: 380px;
  }
  .auth-panel:first-child .auth-contents {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-right: 30px;
    padding-bottom: 30px;
  }
  .auth-panel:last-child .auth-contents {
    padding-left: 30px;
    padding-top: 30px;
  }
}

/* css related to mfa page */
.mfa-footer {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.resend-mfa-code-btn {
  color: #337ab7;
  border: none;
  background-color: transparent;
}

.resend-mfa-code-btn:hover {
  text-decoration: underline;
}

/* css related to save mfa page */
.auth-contents.save-mfa {
  width: 450px;
  min-width: 300px;
}

.save-mfa-checkbox-container {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

#save-mfa-checkbox {
  /* margin :-5px 0 0 0; */
}

.save-mfa-btn-container {
  text-align: center;
  margin-bottom: 15px;
}

.save-mfa-btn {
  width: 80%;
}


@media screen and (max-width: 350px) {
  .user-auth-contents {
    width: 100%;
    padding: 15px;
  }

}

input[type="file"]:focus {
  outline: none;
  border: none;
}

ul {
  list-style-type: disc;
}

.app-logo {
  width: 85%;
}

.hidden {
  display: none;
}

.success {
  color: #3c763d;
}

.error {
  color: #a94442;
  font-weight: bold;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid var(--input-border);
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid var(--input-border);
}

.container {
  margin-top: 35px;
}

.container-fluid {
  padding: 0;
}

.bold {
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.container {
  margin-top: 35px;
}

.row {
  margin: 0;
}

fieldset {
  border: 1px solid #ddd;
  padding: 10px 10px 0 10px;
  margin-bottom: 10px;
}

/* Loading spinner styles */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, .8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  border: 10px solid rgba(0, 0, 0, 0.1);
  /* Border color and size */
  border-top: 10px solid #3498db;
  /* Change this to match your preferred spinner color */
  border-radius: 50%;
  /* Creates a circle */
  width: 100px;
  height: 100px;
  animation: spin 1s linear infinite;
  /* Animation duration and type */
}

/* Keyframe animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  /* Start position */
  100% {
    transform: rotate(360deg);
  }

  /* End position */
}

input[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

input[type=checkbox] {
  margin: 1px 0 0;
}

body {
  font-size: calc(1rem * 1.35);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  --bs-body-font-family: BWHaasGroteskWeb, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  /* Increases the base font size by 30% */
}

/* dashboard css */
.ds-sb-container {
  margin-bottom: 10px;
}

.charts-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.graph-panel {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  flex: 1 1 300px;
  min-width: 280px;
  max-width: calc(33.333% - 14px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  height: 280px;
  display: flex;
  flex-direction: column;
}

.graph-panel canvas {
  flex: 1;
  min-height: 0;
}

.ds-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .graph-panel {
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .graph-panel {
    max-width: 100%;
  }
}

.graphs {
  margin-bottom: 20px;
}

.ds-table {
  width: 100%;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.ds-table-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.ds-table-header {
  padding: 5px 12px;
  text-decoration: underline;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.ds-table-data {
  display: flex;
  justify-content: space-between;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.15s;
}

.ds-table-data:hover {
  background-color: rgba(9, 105, 218, 0.08);
}

.metric-value {
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.envelope-container {
  position: relative;
  margin-right: 20px;
}

.envelope-icon {
  width: 25px;
  height: 25px;
}

.badge {
  background-color: #023499;
  border-color: #032e84;
  color: white;
  font-size: 1rem;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
}

/* Notification badge positioned absolutely (use on icon containers) */
.badge-notification,
.envelope-container .badge {
  position: absolute;
  top: -8px;
  right: -10px;
}



/* css related to dropdown(applied for all bs dropdown */
.bs-dropdown {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.bs-dd-toggle-btn {
  height: 34px;
}

.dropdown-container {
  display: inline-block;
}

.dropdown-container.inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.restore-db-dropdown-container,
.sst-dropdown-container,
.ecs-dropdown-container {
  width: 100%;
  margin-bottom: 10px;
}

.dropdown-menu {
  min-width: 230px;
  overflow-y: hidden;
  cursor: pointer;
  padding: 0px;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  animation: fadeIn;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.3s;
  /* don't forget to set a duration! */
  z-index: 9999;
  background-color: var(--dropdown-bg);
}

.dropdown-menu li {
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
  box-sizing: border-box;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

/* Menu action items (Profile, Inbox, Logout) - no individual borders */
.dropdown-menu li.menu-action-item {
  border-bottom: none;
}

/* Last action item gets a thicker divider to separate from tenant list */
.dropdown-menu li.menu-action-last {
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 4px;
}

#dropdown-menu-input-li {
  position: sticky;
  top: 0;
  background-color: var(--dropdown-bg);
}

#dropdown-menu-input-container {
  display: flex;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
}

#dropdown-menu-input {
  padding-left: 25px;
}

.dropdown-menu li a {
  padding: 10px 0 10px 8px;
  width: 100%;
  display: block;
  color: var(--text-primary);
}

.dropdown-menu li a:hover {
  background-color: var(--dropdown-hover);
}

.dropdown-icon {
  margin-right: 8px;
}

/* css related to detail form page */
.detail-container {
  padding: 0;
  padding-top: 0px;
  padding-bottom: 20px;
  animation: fadeIn;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.2s;
  /* don't forget to set a duration! */
}

.detail-form-wrapper {
  padding: 15px 15px 15px 15px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  /* For Firefox */
  -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  /* For Edge */
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.detail-form-panel {
  display: flex;
  flex-wrap: wrap;
}

.feedback-form-panel .detail-form-box {
  width: 50%;
}

.feedback-form-panel .detail-form-box:nth-child(2) {
  padding: 0px;
}

.detail-form-panel>.detail-form-box:last-child {
  padding: 0px;
}

.detail-form-box {
  padding: 0px 30px 0px 0px;
  box-sizing: border-box;
}

.text-field {
  word-wrap: break-word;
}

.btn-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* Ensure consistent button heights in btn-container */
.btn-container .btn {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding-top: 0;
  padding-bottom: 0;
}

.btn-container .btn i {
  line-height: 1;
}

@media screen and (max-width: 950px) {
  .feedback-form-panel .detail-form-box {
    padding: 0px;
  }

  .feedback-form-panel .detail-form-box {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .detail-form-panel>.detail-form-box:last-child {
    padding-right: 30px;
  }

  .detail-form-panel>.detail-flex-box {
    width: 100%;
    padding-right: 0px;
  }
}

@media screen and (max-width: 1200px) {
  .detail-flex-box {
    width: 100%;
    padding-right: 0px;
  }
}

@media screen and (max-width: 880px) {
  .detail-form-panel .col-sm-6 {
    width: 100%;
    padding: 0px;
  }

  .detail-form-panel>.detail-form-box:last-child {
    padding-right: 0px;
  }
}

.text-danger {
  color: #a94442 !important;
}

.input-container,
.btn-container {
  margin-bottom: 10px;
}

textarea.input_textarea {
  width: 100%;
  resize: none;
  height: 200px;
  box-sizing: border-box;
  color: var(--text-primary);
  font-size: 14px;
  border-radius: 4px;
  box-shadow: none;
  padding: 15px;
}

#use_prv_pem,
#use_ca_pem,
#use_pub_pem,
#pem_csr {
  font-family: 'Courier New', Courier, monospace !important;
  /* Monospaced font */
  font-size: 14px;
  /* Font size */
  line-height: 1.5;
  /* Line height for readability */
  color: var(--text-primary);
  /* Text color */
  background-color: var(--bg-secondary);
  /* Light background color */
  padding: 10px;
  /* Inner spacing */
  resize: vertical;
  /* Allow vertical resizing */
  overflow: auto;
  /* Scrollbar for overflow */
}

/* Optional: Add focus styling */
#use_prv_pem:focus,
#use_ca_pem:focus,
#use_pub_pem:focus,
#pem_csr:focus {
  border-color: #007bff;
  /* Change border color on focus */
  outline: none;
  /* Remove default outline */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  /* Add shadow for better visibility */
}

.view-container {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

/* Rich text (TinyMCE) content in view mode */
.view-container .value-name p { margin-bottom: 1em; }
.view-container .value-name h1, .view-container .value-name h2, 
.view-container .value-name h3, .view-container .value-name h4, 
.view-container .value-name h5, .view-container .value-name h6 { 
  margin-top: 1em; 
  margin-bottom: 0.5em; 
}
.view-container .value-name ul, .view-container .value-name ol { 
  margin-left: 1.5em; 
  margin-bottom: 1em; 
}
.view-container .value-name li { margin-bottom: 0.25em; }
.view-container .value-name strong, .view-container .value-name b { font-weight: bold; }
.view-container .value-name em, .view-container .value-name i { font-style: italic; }
.view-container .value-name u { text-decoration: underline; }
.view-container .value-name a { color: #0d6efd; text-decoration: underline; }
.view-container .value-name code { word-break: break-all; white-space: pre-wrap; }

.input-text,
.input-btn-text,
.datepicker {
  width: 100%;
  box-sizing: border-box;
  color: var(--text-primary);
  font-size: inherit;
  box-shadow: none;
  height: 34px;
  padding: 6px 12px;
}

.input-btn-container {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.password-input-container {
  display: flex;
  gap: 5px;
}

.password-input-wrapper {
  position: relative;
  width: 100%;
}

.password-input {
  width: 100%;
  padding-right: 30px;
}

.password-hidden-username-input {
  display: none;
}

.eye-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 30;
  display: none;
}

.visible-icon {
  cursor: pointer;
}

.copy-icon {
  cursor: pointer;
  position: absolute;
  height: 1.35rem;
  top: 50%;
  right: -20px;
  transform: translate(0, -50%);
}

.form-single-select~.select2-container {
  width: 100% !important;
  min-width: 100%;
  font-size: 1.35rem;
}

.form-multiple-select~.select2-container {
  width: 100% !important;
}

.form-single-select~.select2-container--default .select2-selection--single {
  border: solid 1px var(--input-border);
}

.form-multiple-select~.select2-container .selection .select2-selection--multiple {
  border: solid 1px var(--input-border);
}

.select2-readOnly,
.readOnly {
  pointer-events: none !important;
  /* Prevent interaction */
  background-color: var(--bg-tertiary) !important;
  /* Change the color */
  user-select: text !important;
  /* Allow text selection */
}

.custom-checkbox {
  margin: 0;
}

.form-checkbox-container {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.form-checkbox-container label {
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border-radius: 4px;
  margin-bottom: 5px;
}

.folder-btn {
  margin-bottom: 10px;
}

.ui-widget-header .ui-icon {
  background-image: none;
}

.ui-datepicker {
  z-index: 9999 !important;
}

.ui-datepicker .ui-icon {
  text-indent: 0px;
}

.ui-datepicker-next,
.ui-datepicker-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
  cursor: pointer;
  user-select: none;
}

.ui-datepicker-next:hover,
.ui-datepicker-prev:hover {
  text-decoration: none;
  color: #333333;
}

.drp-custom-option {
  position: relative;
}

.drp-custom-popup {
  position: absolute;
  padding: 10px;
  top: -50%;
  right: 0;
  transform: translate(100%, 0);
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  z-index: 30;
  display: none;
}

.drp-custom-range {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
}

.drp-custom-btn {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.drp-custom-input {
  width: auto;
  text-align: right;
}

#db-con-test {
  width: 150px;
  text-align: center;
}

.email-info-list {
  list-style: none;
  padding: 0;
  display: flex;
}

.email-info-list li {
  display: inline-block;
  margin-right: 10px;
}

.email-message {
  font-size: 16px;
}

#sublist-tabs .nav-link,
#detail-tabs .nav-link {
  padding: 10px 15px;
  font-size: 1.4rem;
  color: #337ab7;
  border-color: transparent;
  background-color: transparent;
}

#sublist-tabs .nav-link:hover,
#detail-tabs .nav-link:hover {
  color: #285f8f;
  background-color: rgba(0, 0, 0, 0.04);
  border-color: transparent;
}

#sublist-tabs .nav-link.active,
#detail-tabs .nav-link.active {
  color: var(--app-color, #013499);
  background-color: #fff;
  border-color: #d0d7de #d0d7de #fff;
  font-weight: 500;
  position: relative;
}

/* Active tab underline indicator - light mode */
#sublist-tabs .nav-link.active::after,
#detail-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background-color: var(--app-color, #013499);
  border-radius: 2px 2px 0 0;
}

/* Light mode: sublist tabs container */
:root:not([data-bs-theme="dark"]) #sublist-tabs {
  background-color: transparent;
}

:root:not([data-bs-theme="dark"]) #sublist-tabs .nav-tabs,
:root:not([data-bs-theme="dark"]) #detail-tabs {
  background-color: #f0f2f5;
  border: 1px solid #d0d7de;
  border-bottom: 1px solid #d0d7de;
  border-radius: 6px 6px 0 0;
  margin: 0;
  padding: 0;
}

.detail-tabs.nav-tabs {
  border-bottom: none;
}







/* css related to error message of form validation */
label.error {
  color: red;
}

.error_placement {
  color: red;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  margin-top: 5px;
}

.body-container {
  display: flex;
  width: 100%;
  min-height: calc(100vh - var(--navbar-height));
  background-color: var(--bg-primary);
}

/* css related to contents */
.contents {
  width: calc(100% - 240px);
  height: calc(100vh - var(--navbar-height));
  box-sizing: border-box;
  position: relative;
  padding: 0 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
}

/* Ensure dataTable-container fills available space and pagination stays at bottom */
.contents > .dataTable-container {
  flex: 1 1 auto;
  min-height: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

/* Scrollable content containers within dataTable-container */
.dataTable-container > .graphs-container,
.dataTable-container > .table-container {
  flex: 1 1 auto;
  min-height: 0;
  /* padding: 15px; */
}

/* Also apply flex to any dataTable-container that replaces #sublist */
#sublist-tabs ~ .dataTable-container {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Sublist table container - no vertical scroll, expand to content */
#sublist-tabs ~ .dataTable-container > .table-container,
#sublist-tabs ~ #sublist > .dataTable-container > .table-container {
  overflow-x: auto !important;
  overflow-y: visible !important;
  min-height: 50px;
  max-height: none !important;
  height: auto !important;
}

/* DevOps/ERP detail pages with sublists - content area scrolls */
.contents:has(#sublist-tabs) {
  height: calc(100vh - var(--navbar-height));
  overflow-y: auto;
  overflow-x: hidden;
}

/* Detail/form pages without data tables - content area scrolls */
.contents:has(.detail-container) {
  overflow-y: auto;
  overflow-x: hidden;
}

/* Table container should scroll and fill remaining space */
.contents .table-container {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
}

/* dataTable-header should not grow */
.dataTable-container > .dataTable-header {
  flex: 0 0 auto;
}

/* Pagination stays fixed height at bottom */
.contents > .pagination-container,
.dataTable-container > .pagination-container {
  flex: 0 0 auto;
}


.contents-fluid {
  width: 100%;
}

@media screen and (max-width: 1300px) {
  .contents {
    width: 100%;
    box-sizing: border-box;
    position: relative;
  }
}

/* Mobile: allow contents to scroll vertically when filters take up space */
@media screen and (max-width: 768px) {
  .body-container {
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - var(--navbar-height));
  }
  
  .contents {
    overflow: visible;
    height: auto;
    min-height: auto;
  }
  
  .contents > .dataTable-container {
    overflow: visible;
    flex: none;
    min-height: auto;
    height: auto;
  }
  
  .contents .table-container {
    overflow-x: auto;
    overflow-y: visible;
    max-height: none;
    height: auto !important;
    flex: none;
  }
  
  .contents .filters {
    flex-wrap: wrap;
  }
}

/* css related to sidebar */
.sidebar {
  width: clamp(240px, 15vw, 300px);
  display: block;
  box-sizing: border-box;
  background-color: var(--sidebar-bg);
  height: calc(100vh - var(--navbar-height));
}

.sidebar-wrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  font-size: 1.35rem;
}

.sidebar-search-box {
  padding: 10px;
  position: sticky;
  top: 0;
  left: 0;
  background-color: var(--sidebar-bg);
  z-index: 10;
}

.sidebar-search-icon,
.menu-dropdown-search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.sidebar-search-input {
  padding-left: 25px;
}

@media screen and (max-width: 1300px) {
  .sidebar {
    /* width:0px; */
    display: none;
  }
}

.sidebar-close {
  /* width:0px; */
  display: none;
}

.sidebar-link {
  width: 100%;
  background-color: var(--sidebar-bg);
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}

@keyframes pulse-larger {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
    /* Adjust the scale to make the pulse larger */
  }

  100% {
    transform: scale(1);
  }
}

.sidebar-badge {
  background-color: #023499;
  border-color: #032e84;
  color: white;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.badge-pulse {
  animation: pulse-larger 2s infinite;
  /* Corrected animation property */
}

.sidebar-listTitle {
  width: 100%;
  padding: 15px 0px 15px 15px;
  background-color: var(--sidebar-bg);
  color: var(--sidebar-text);
  box-sizing: border-box;
  cursor: pointer;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  border-left: 4px solid transparent;
  transition: background-color 0.15s, border-color 0.15s;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.sidebar-listTitle:hover {
  background-color: var(--sidebar-hover);
  color: var(--sidebar-text);
  text-decoration: none;
  border-left-color: var(--app-color);
}

.sidebar-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  background-color: var(--sidebar-bg);
  box-sizing: border-box;
}

.sidebar-list li a,
.sidebar-link a {
  color: var(--sidebar-text);
  display: flex;
  align-items: center;
  padding: 15px 0px 15px 15px;
  cursor: pointer;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: background-color 0.15s, border-color 0.15s;
  font-family: BWHaasGroteskWeb, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.2;
}

.sidebar-list li a:hover,
.sidebar-link a:hover {
  background-color: var(--sidebar-hover);
  color: var(--sidebar-text);
  text-decoration: none;
  border-left-color: var(--app-color);
}

.current-page {
  background-color: var(--app-color-light);
  border-left: 4px solid var(--app-color);
}

/* ==========================================================================
   Sidebar Archive Objects Section
   ========================================================================== */
.sidebar-archive-objects,
.sidebar-archive-section,
.sidebar-archive-uat-section,
.sidebar-dbvault-section {
  margin-top: 10px;
  background-color: var(--archive-objects-bg, rgba(0, 0, 0, 0.03));
  border-top: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
  padding-top: 0;
}

.sidebar-section-header {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #6c757d);
  padding: 12px 15px 8px 15px;
  background-color: transparent;
}

/* Archive objects section items - keep same padding as regular items */
.sidebar-archive-objects .sidebar-listTitle {
  width: 100%;
}

.sidebar-archive-objects .sidebar-list li a {
  padding: 8px 0px 8px 20px;
  font-family: BWHaasGroteskWeb, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* Archive section and DBVault section items - match regular sidebar-link styling */
.sidebar-archive-section .sidebar-link,
.sidebar-archive-uat-section .sidebar-link,
.sidebar-dbvault-section .sidebar-link {
  width: 100%;
}

.sidebar-archive-section .sidebar-link a,
.sidebar-archive-uat-section .sidebar-link a,
.sidebar-dbvault-section .sidebar-link a {
  padding: 15px 0px 15px 15px;
  display: flex;
  align-items: center;
}

/* Prevent text shift when current-page border is applied */
.sidebar-archive-uat-section .sidebar-link {
  border-left: 4px solid transparent;
}

.sidebar-archive-section .sidebar-link .sidebar-menu-icon,
.sidebar-archive-uat-section .sidebar-link .sidebar-menu-icon,
.sidebar-dbvault-section .sidebar-link .sidebar-menu-icon {
  display: inline-block;
}

/* ==========================================================================
   Sidebar Menu Icons (toggle with .show-sidebar-icons on body)
   ========================================================================== */
.sidebar-menu-icon {
  display: none;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Show icons when toggle is enabled */
body.show-sidebar-icons .sidebar-menu-icon {
  display: inline-block;
}

body.show-sidebar-icons .sidebar-listTitle,
body.show-sidebar-icons .sidebar-list li a,
body.show-sidebar-icons .sidebar-link a {
  display: flex;
  align-items: center;
}

/* Fix: Ensure sidebar items don't shift when icons are shown */
body.show-sidebar-icons .sidebar-listTitle,
body.show-sidebar-icons .sidebar-link {
  width: 100%;
}

body.show-sidebar-icons .sidebar-list li a,
body.show-sidebar-icons .sidebar-link a {
  width: 100%;
  box-sizing: border-box;
}

/* Icon definitions - using data-uri SVGs for crisp rendering */

/* Admin Messages - envelope icon */
[data-menu-name="adminMessages"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1zm13 2.383-4.708 2.825L15 11.105zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741M1 11.105l4.708-2.897L1 5.383z'/%3E%3C/svg%3E");
}

/* Archives List - box/archive icon */
[data-menu-name="archive"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5V5a1 1 0 0 1-1-1zm2 3v7.5A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5V5zm13-3H1v2h14zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}

/* Archive Index - list/table icon */
[data-menu-name="archiveIndex"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m-3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2'/%3E%3C/svg%3E");
}

/* File Cabinet - folder icon */
[data-menu-name="fileCabinet"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M.54 3.87.5 3a2 2 0 0 1 2-2h3.672a2 2 0 0 1 1.414.586l.828.828A2 2 0 0 0 9.828 3H14a2 2 0 0 1 2 2v1.5a.5.5 0 0 1-1 0V5a1 1 0 0 0-1-1H9.828a3 3 0 0 1-2.12-.879l-.83-.828A1 1 0 0 0 6.172 2H2.5a1 1 0 0 0-1 .981z'/%3E%3Cpath d='M14.5 5H7.707a1 1 0 0 0-.707.293L5.586 6.707A1 1 0 0 1 4.879 7H1.5A1.5 1.5 0 0 0 0 8.5v6A1.5 1.5 0 0 0 1.5 16h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 5'/%3E%3C/svg%3E");
}

/* Snapshots - camera icon */
[data-menu-name="snapshots"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M10.5 8.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0'/%3E%3Cpath d='M2 4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1.172a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 9.172 2H6.828a2 2 0 0 0-1.414.586l-.828.828A2 2 0 0 1 3.172 4zm.5 2a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m9 2.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0'/%3E%3C/svg%3E");
}

/* Financial Reports - bar chart icon */
[data-menu-name="reports"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M4 11H2v3h2zm5-4H7v7h2zm5-5h-2v12h2zm-2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zM6 7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zm-5 4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1z'/%3E%3C/svg%3E");
}

/* User Access section - people icon */
[data-menu-name="userAccess"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5.784 6A2.24 2.24 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.3 6.3 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5'/%3E%3C/svg%3E");
}

/* Users Access List - person icon */
[data-menu-name="userAccess"] + .sidebar-collapse [data-menu-name="userAccess"] .sidebar-menu-icon,
.sidebar-list [data-menu-name="userAccess"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4m-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10s-3.516.68-4.168 1.332c-.678.678-.83 1.418-.832 1.664z'/%3E%3C/svg%3E");
}

/* Invite New User - person plus icon */
[data-menu-name="inviteUser"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4 8c0 1-1 1-1 1H1s-1 0-1-1 1-4 6-4 6 3 6 4m-1-.004c-.001-.246-.154-.986-.832-1.664C9.516 10.68 8.289 10 6 10s-3.516.68-4.168 1.332c-.678.678-.83 1.418-.832 1.664z'/%3E%3Cpath fill-rule='evenodd' d='M13.5 5a.5.5 0 0 1 .5.5V7h1.5a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0V8h-1.5a.5.5 0 0 1 0-1H13V5.5a.5.5 0 0 1 .5-.5'/%3E%3C/svg%3E");
}

/* User Access Restrictions - shield icon */
[data-menu-name="userAccessRestriction"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56'/%3E%3C/svg%3E");
}

/* Feedback section - chat icon */
[data-menu-name="feedback"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z'/%3E%3C/svg%3E");
}

/* Give Feedback - pencil square icon */
[data-menu-name="feedbackNew"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z'/%3E%3Cpath fill-rule='evenodd' d='M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z'/%3E%3C/svg%3E");
}

/* Settings section - gear icon */
[data-menu-name="settings"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492M5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115z'/%3E%3C/svg%3E");
}

/* UAT Info - clipboard check icon */
[data-menu-name="uat"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0'/%3E%3Cpath d='M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z'/%3E%3Cpath d='M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z'/%3E%3C/svg%3E");
}

/* UAT Tickets - ticket perforated icon */
[data-menu-name="archiveUatTickets"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M4 4.85v.9h1v-.9zm7 0v.9h1v-.9zm-7 1.8v.9h1v-.9zm7 0v.9h1v-.9zm-7 1.8v.9h1v-.9zm7 0v.9h1v-.9zm-7 1.8v.9h1v-.9zm7 0v.9h1v-.9z'/%3E%3Cpath d='M1.5 3A1.5 1.5 0 0 0 0 4.5V6a.5.5 0 0 0 .5.5 1.5 1.5 0 1 1 0 3 .5.5 0 0 0-.5.5v1.5A1.5 1.5 0 0 0 1.5 13h13a1.5 1.5 0 0 0 1.5-1.5V10a.5.5 0 0 0-.5-.5 1.5 1.5 0 0 1 0-3A.5.5 0 0 0 16 6V4.5A1.5 1.5 0 0 0 14.5 3zM1 4.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v1.05a2.5 2.5 0 0 0 0 4.9v1.05a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-1.05a2.5 2.5 0 0 0 0-4.9z'/%3E%3C/svg%3E");
}

/* Account - person gear icon */
[data-menu-name="account"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m.256 7a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1zm3.63-4.54c.18-.613 1.048-.613 1.229 0l.043.148a.64.64 0 0 0 .921.382l.136-.074c.561-.306 1.175.308.87.869l-.075.136a.64.64 0 0 0 .382.92l.149.045c.612.18.612 1.048 0 1.229l-.15.043a.64.64 0 0 0-.38.921l.074.136c.305.561-.309 1.175-.87.87l-.136-.075a.64.64 0 0 0-.92.382l-.045.149c-.18.612-1.048.612-1.229 0l-.043-.15a.64.64 0 0 0-.921-.38l-.136.074c-.561.305-1.175-.309-.87-.87l.075-.136a.64.64 0 0 0-.382-.92l-.148-.045c-.613-.18-.613-1.048 0-1.229l.148-.043a.64.64 0 0 0 .382-.921l-.074-.136c-.306-.561.308-1.175.869-.87l.136.075a.64.64 0 0 0 .92-.382zM14 12.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0'/%3E%3C/svg%3E");
}

/* Archive Settings - sliders icon */
[data-menu-name="archiveSettings"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.5 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M9.05 3a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0V3zM4.5 7a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M2.05 8a2.5 2.5 0 0 1 4.9 0H16v1H6.95a2.5 2.5 0 0 1-4.9 0H0V8zm9.45 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-2.45 1a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0v-1z'/%3E%3C/svg%3E");
}

/* Support/Tickets - headset icon */
[data-menu-name="ticket"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a5 5 0 0 0-5 5v1h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a6 6 0 1 1 12 0v6a2.5 2.5 0 0 1-2.5 2.5H9.366a1 1 0 0 1-.866.5h-1a1 1 0 1 1 0-2h1a1 1 0 0 1 .866.5H11.5A1.5 1.5 0 0 0 13 12h-1a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h1V6a5 5 0 0 0-5-5'/%3E%3C/svg%3E");
}

/* Logs section - journal icon */
[data-menu-name="system"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M5 10.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5'/%3E%3Cpath d='M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2'/%3E%3Cpath d='M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z'/%3E%3C/svg%3E");
}

/* Login Events - key icon */
[data-menu-name="loginEvent"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M0 8a4 4 0 0 1 7.465-2H14a.5.5 0 0 1 .354.146l1.5 1.5a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0L13 9.207l-.646.647a.5.5 0 0 1-.708 0L11 9.207l-.646.647a.5.5 0 0 1-.708 0L9 9.207l-.646.647A.5.5 0 0 1 8 10h-.535A4 4 0 0 1 0 8m4-3a3 3 0 1 0 2.712 4.285A.5.5 0 0 1 7.163 9h.63l.853-.854a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.793-.793-1-1h-6.63a.5.5 0 0 1-.451-.285A3 3 0 0 0 4 5'/%3E%3Cpath d='M4 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0'/%3E%3C/svg%3E");
}

/* Download History - download icon */
[data-menu-name="downloadHistory"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5'/%3E%3Cpath d='M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z'/%3E%3C/svg%3E");
}

/* ==========================================================================
   DevOps Category Icons
   ========================================================================== */

/* DBV Objects - database/cube icon */
[data-menu-name="dbvObjects"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M6 12.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5M3 8.062C3 6.76 4.235 5.765 5.53 5.886a26.6 26.6 0 0 0 4.94 0C11.765 5.765 13 6.76 13 8.062v1.157a.93.93 0 0 1-.765.935c-.845.147-2.34.346-4.235.346s-3.39-.2-4.235-.346A.93.93 0 0 1 3 9.219zm4.542-.827a.25.25 0 0 0-.217.068l-.92.9a25 25 0 0 1-1.871-.183.25.25 0 0 0-.068.495c.55.076 1.232.149 2.02.193a.25.25 0 0 0 .189-.071l.754-.736.847 1.71a.25.25 0 0 0 .404.062l.932-.97a25 25 0 0 0 1.922-.188.25.25 0 0 0-.068-.495c-.538.074-1.207.145-1.98.189a.25.25 0 0 0-.166.076l-.754.785-.842-1.7a.25.25 0 0 0-.182-.135'/%3E%3Cpath d='M8.5 1.866a1 1 0 0 0-1 0l-6 3.464A1 1 0 0 0 1 6.196v3.608a1 1 0 0 0 .5.866l6 3.464a1 1 0 0 0 1 0l6-3.464a1 1 0 0 0 .5-.866V6.196a1 1 0 0 0-.5-.866zM2 9.804V6.196l6-3.464 6 3.464v3.608l-6 3.464z'/%3E%3C/svg%3E");
}

/* Archives - archive box icon (for category, not sidebar-link) */
.sidebar-listTitle[data-menu-name="archive"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5V5a1 1 0 0 1-1-1zm2 3v7.5A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5V5zm13-3H1v2h14zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}

/* Tenants - building icon */
[data-menu-name="tenant"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M4 2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z'/%3E%3Cpath d='M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1zm11 0H3v14h3v-2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5V15h3z'/%3E%3C/svg%3E");
}

/* SOWs - file-text/document icon */
[data-menu-name="sow"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M5 4a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zm-.5 2.5A.5.5 0 0 1 5 6h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5M5 8a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1z'/%3E%3Cpath d='M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1'/%3E%3C/svg%3E");
}

/* UATs - clipboard-check icon */
[data-menu-name="uat"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0'/%3E%3Cpath d='M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z'/%3E%3Cpath d='M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z'/%3E%3C/svg%3E");
}

/* Contacts - person-lines icon */
[data-menu-name="contact"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5 6s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zM11 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 1-.5-.5m.5 2.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1zm2 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1zm0 3a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1z'/%3E%3C/svg%3E");
}

/* Ext. Accounts - link/chain icon */
[data-menu-name="extAccount"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M4.715 6.542 3.343 7.914a3 3 0 1 0 4.243 4.243l1.828-1.829A3 3 0 0 0 8.586 5.5L8 6.086a1 1 0 0 0-.154.199 2 2 0 0 1 .861 3.337L6.88 11.45a2 2 0 1 1-2.83-2.83l.793-.792a4 4 0 0 1-.128-1.287z'/%3E%3Cpath d='M6.586 4.672A3 3 0 0 0 7.414 9.5l.775-.776a2 2 0 0 1-.896-3.346L9.12 3.55a2 2 0 1 1 2.83 2.83l-.793.792c.112.42.155.855.128 1.287l1.372-1.372a3 3 0 1 0-4.243-4.243z'/%3E%3C/svg%3E");
}

/* Web Forms - ui-checks/form icon */
[data-menu-name="webForm"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7 2.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zM2 1a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm0 8a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2zm.854-3.646a.5.5 0 0 1-.708 0l-1-1a.5.5 0 1 1 .708-.708l.646.647 1.646-1.647a.5.5 0 1 1 .708.708zm0 8a.5.5 0 0 1-.708 0l-1-1a.5.5 0 0 1 .708-.708l.646.647 1.646-1.647a.5.5 0 0 1 .708.708zM7 10.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

/* Users - person icon (for category) */
.sidebar-listTitle[data-menu-name="user"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4m-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10s-3.516.68-4.168 1.332c-.678.678-.83 1.418-.832 1.664z'/%3E%3C/svg%3E");
}

/* Licenses - key icon */
[data-menu-name="license"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M0 8a4 4 0 0 1 7.465-2H14a.5.5 0 0 1 .354.146l1.5 1.5a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0L13 9.207l-.646.647a.5.5 0 0 1-.708 0L11 9.207l-.646.647a.5.5 0 0 1-.708 0L9 9.207l-.646.647A.5.5 0 0 1 8 10h-.535A4 4 0 0 1 0 8m4-3a3 3 0 1 0 2.712 4.285A.5.5 0 0 1 7.163 9h.63l.853-.854a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.793-.793-1-1h-6.63a.5.5 0 0 1-.451-.285A3 3 0 0 0 4 5'/%3E%3Cpath d='M4 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0'/%3E%3C/svg%3E");
}

/* Domains - globe icon */
[data-menu-name="domain"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8m7.5-6.923c-.67.204-1.335.82-1.887 1.855A8 8 0 0 0 5.145 4H7.5zM4.09 4a9.3 9.3 0 0 1 .64-1.539 7 7 0 0 1 .597-.933A7 7 0 0 0 2.255 4zm-.582 3.5c.03-.877.138-1.718.312-2.5H1.674a7 7 0 0 0-.656 2.5zM4.847 5a12.5 12.5 0 0 0-.338 2.5H7.5V5zM8.5 5v2.5h2.99a12.5 12.5 0 0 0-.337-2.5zM4.51 8.5a12.5 12.5 0 0 0 .337 2.5H7.5V8.5zm3.99 0V11h2.653c.187-.765.306-1.608.338-2.5zM5.145 12q.208.58.468 1.068c.552 1.035 1.218 1.65 1.887 1.855V12zm.182 2.472a7 7 0 0 1-.597-.933A9.3 9.3 0 0 1 4.09 12H2.255a7 7 0 0 0 3.072 2.472M3.82 11a13.7 13.7 0 0 1-.312-2.5h-1.834a7 7 0 0 0 .656 2.5zm6.853 3.472A7 7 0 0 0 13.745 12H11.91a9.3 9.3 0 0 1-.64 1.539 7 7 0 0 1-.597.933M8.5 12v2.923c.67-.204 1.335-.82 1.887-1.855q.26-.487.468-1.068zm3.68-1h2.146c.365-.767.594-1.61.656-2.5h-1.834a13.7 13.7 0 0 1-.312 2.5zm2.802-3.5a7 7 0 0 0-.656-2.5H12.18c.174.782.282 1.623.312 2.5zM11.27 2.461c.247.464.462.98.64 1.539h1.835a7 7 0 0 0-3.072-2.472c.218.284.418.598.597.933M10.855 4a8 8 0 0 0-.468-1.068C9.835 1.897 9.17 1.282 8.5 1.077V4z'/%3E%3C/svg%3E");
}

/* Redirects - signpost icon */
[data-menu-name="redirect"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.293.707A1 1 0 0 0 7 1.414V4H2a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h5v6h2v-6h3.532a1 1 0 0 0 .768-.36l1.933-2.32a.5.5 0 0 0 0-.64L13.3 4.36a1 1 0 0 0-.768-.36H9V1.414A1 1 0 0 0 7.293.707M13.532 5l1.666 2-1.666 2H2V5z'/%3E%3C/svg%3E");
}

/* DB Servers - server icon */
[data-menu-name="dbServer"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M1.333 2.667C1.333 1.194 4.318 0 8 0s6.667 1.194 6.667 2.667V4c0 1.473-2.985 2.667-6.667 2.667S1.333 5.473 1.333 4z'/%3E%3Cpath d='M1.333 6.334v3C1.333 10.805 4.318 12 8 12s6.667-1.194 6.667-2.667V6.334a6.5 6.5 0 0 1-1.458.79C11.81 7.684 9.967 8 8 8s-3.81-.317-5.21-.876a6.5 6.5 0 0 1-1.457-.79'/%3E%3Cpath d='M14.667 11.668a6.5 6.5 0 0 1-1.458.789c-1.4.56-3.242.876-5.21.876-1.966 0-3.809-.316-5.208-.876a6.5 6.5 0 0 1-1.458-.79v1.666C1.333 14.806 4.318 16 8 16s6.667-1.194 6.667-2.667z'/%3E%3C/svg%3E");
}

/* DBs - database icon */
[data-menu-name="db"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M4.318 2.687C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4c0-.374.356-.875 1.318-1.313M13 5.698V7c0 .374-.356.875-1.318 1.313C10.766 8.729 9.464 9 8 9s-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777A5.5 5.5 0 0 0 13 5.698M14 4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16s3.022-.289 4.096-.777C13.125 14.755 14 14.007 14 13zm-1 4.698V10c0 .374-.356.875-1.318 1.313C10.766 11.729 9.464 12 8 12s-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10s3.022-.289 4.096-.777A5.5 5.5 0 0 0 13 8.698m0 3V13c0 .374-.356.875-1.318 1.313C10.766 14.729 9.464 15 8 15s-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13s3.022-.289 4.096-.777c.324-.147.633-.323.904-.525'/%3E%3C/svg%3E");
}

/* Iceberg DBs - snow/iceberg icon */
[data-menu-name="iceberg"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 16a.5.5 0 0 1-.5-.5v-1.293l-.646.647a.5.5 0 0 1-.707-.708L7.5 12.793V8.866l-3.4 1.963-.496 1.85a.5.5 0 1 1-.966-.26l.237-.882-1.12.646a.5.5 0 0 1-.5-.866l1.12-.646-.884-.237a.5.5 0 1 1 .26-.966l1.848.495L7 8 3.6 6.037l-1.85.495a.5.5 0 0 1-.258-.966l.883-.237-1.12-.646a.5.5 0 1 1 .5-.866l1.12.646-.237-.883a.5.5 0 1 1 .966-.258l.495 1.849L7.5 7.134V3.207L6.147 1.854a.5.5 0 1 1 .707-.708l.646.647V.5a.5.5 0 1 1 1 0v1.293l.647-.647a.5.5 0 1 1 .707.708L8.5 3.207v3.927l3.4-1.963.496-1.85a.5.5 0 1 1 .966.26l-.236.882 1.12-.646a.5.5 0 0 1 .5.866l-1.12.646.883.237a.5.5 0 1 1-.26.966l-1.848-.495L9 8l3.4 1.963 1.849-.495a.5.5 0 0 1 .259.966l-.883.237 1.12.646a.5.5 0 0 1-.5.866l-1.12-.646.236.883a.5.5 0 1 1-.966.258l-.495-1.849-3.4-1.963v3.927l1.353 1.353a.5.5 0 0 1-.707.708l-.647-.647V15.5a.5.5 0 0 1-.5.5'/%3E%3C/svg%3E");
}

/* Snapshots - camera icon (for category) */
.sidebar-listTitle[data-menu-name="snapshot"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M10.5 8.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0'/%3E%3Cpath d='M2 4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1.172a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 9.172 2H6.828a2 2 0 0 0-1.414.586l-.828.828A2 2 0 0 1 3.172 4zm.5 2a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m9 2.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0'/%3E%3C/svg%3E");
}

/* Auto Snapshots - clock icon */
[data-menu-name="autoSnapshot"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71z'/%3E%3Cpath d='M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0'/%3E%3C/svg%3E");
}

/* Restores - arrow-counterclockwise icon */
[data-menu-name="restore"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 3a5 5 0 1 1-4.546 2.914.5.5 0 0 0-.908-.417A6 6 0 1 0 8 2z'/%3E%3Cpath d='M8 4.466V.534a.25.25 0 0 0-.41-.192L5.23 2.308a.25.25 0 0 0 0 .384l2.36 1.966A.25.25 0 0 0 8 4.466'/%3E%3C/svg%3E");
}

/* ECS Jobs - gear icon */
[data-menu-name="ecsJob"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492M5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115z'/%3E%3C/svg%3E");
}

/* File Cabinets - folder icon (for category) */
.sidebar-listTitle[data-menu-name="fileCabinet"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M.54 3.87.5 3a2 2 0 0 1 2-2h3.672a2 2 0 0 1 1.414.586l.828.828A2 2 0 0 0 9.828 3H14a2 2 0 0 1 2 2v1.5a.5.5 0 0 1-1 0V5a1 1 0 0 0-1-1H9.828a3 3 0 0 1-2.12-.879l-.83-.828A1 1 0 0 0 6.172 2H2.5a1 1 0 0 0-1 .981z'/%3E%3Cpath d='M14.5 5H7.707a1 1 0 0 0-.707.293L5.586 6.707A1 1 0 0 1 4.879 7H1.5A1.5 1.5 0 0 0 0 8.5v6A1.5 1.5 0 0 0 1.5 16h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 5'/%3E%3C/svg%3E");
}

/* S3 Storage Buckets - bucket icon */
[data-menu-name="s3StorageBucket"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M2.522 5H2a.5.5 0 0 0-.494.574l1.372 9.149A1.5 1.5 0 0 0 4.36 16h7.278a1.5 1.5 0 0 0 1.483-1.277l1.373-9.149A.5.5 0 0 0 14 5h-.522A5.5 5.5 0 0 0 2.522 5m1.005 0a4.5 4.5 0 0 1 8.945 0zm9.892 1-1.286 8.574a.5.5 0 0 1-.494.426H4.36a.5.5 0 0 1-.494-.426L2.58 6h10.838'/%3E%3C/svg%3E");
}

/* Message - chat icon */
[data-menu-name="message"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M2.678 11.894a1 1 0 0 1 .287.801 11 11 0 0 1-.398 2c1.395-.323 2.247-.697 2.634-.893a1 1 0 0 1 .71-.074A8 8 0 0 0 8 14c3.996 0 7-2.807 7-6s-3.004-6-7-6-7 2.808-7 6c0 1.468.617 2.83 1.678 3.894m-.493 3.905a22 22 0 0 1-.713.129c-.2.032-.352-.176-.273-.362a10 10 0 0 0 .244-.637l.003-.01c.248-.72.45-1.548.524-2.319C.743 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.52.263-1.639.742-3.468 1.105'/%3E%3C/svg%3E");
}

/* Feedback - chat-heart icon */
[data-menu-name="feedback"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2.965 12.695a1 1 0 0 0-.287-.801C1.618 10.83 1 9.468 1 8c0-3.192 3.004-6 7-6s7 2.808 7 6-3.004 6-7 6a8 8 0 0 1-2.088-.272 1 1 0 0 0-.711.074c-.387.196-1.24.57-2.634.893a11 11 0 0 0 .398-2m-.8 3.108.02-.004c1.83-.363 2.948-.842 3.468-1.105A9 9 0 0 0 8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6a10 10 0 0 1-.524 2.318l-.003.011a11 11 0 0 1-.244.637c-.079.186.074.394.273.362a22 22 0 0 0 .693-.125M8 5.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132'/%3E%3C/svg%3E");
}

/* Knowledge Base - book icon */
[data-menu-name="knowledgeBase"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M1 2.828c.885-.37 2.154-.769 3.388-.893 1.33-.134 2.458.063 3.112.752v9.746c-.935-.53-2.12-.603-3.213-.493-1.18.12-2.37.461-3.287.811zm7.5-.141c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783'/%3E%3C/svg%3E");
}

/* Inventory - box-seam icon */
[data-menu-name="inventory"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5l2.404.961L10.404 2zm3.564 1.426L5.596 5 8 5.961 14.154 3.5zm3.25 1.7-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923zM7.443.184a1.5 1.5 0 0 1 1.114 0l7.129 2.852A.5.5 0 0 1 16 3.5v8.662a1 1 0 0 1-.629.928l-7.185 2.874a.5.5 0 0 1-.372 0L.63 13.09a1 1 0 0 1-.63-.928V3.5a.5.5 0 0 1 .314-.464z'/%3E%3C/svg%3E");
}

/* Hide icons for regular menu items (devops/erp) - keep icons on categories only */
.sidebar-wrapper > .sidebar-link .sidebar-menu-icon,
.sidebar-wrapper > .sidebar-collapse .sidebar-list li .sidebar-menu-icon {
  display: none !important;
}

/* Regular menu items (devops/erp) - indent items under categories to align with category text (accounts for icon space) */
.sidebar-wrapper > .sidebar-collapse .sidebar-list li a {
  padding-left: 39px;
}

/* Show icons on devops/erp category headers */
.sidebar-wrapper > .sidebar-listTitle .sidebar-menu-icon {
  display: inline-block;
}

/* ==========================================================================
   ERP Category Icons
   ========================================================================== */

/* CRM - people/customers icon */
[data-menu-name="crm"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5.784 6A2.24 2.24 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.3 6.3 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5'/%3E%3C/svg%3E");
}

/* Contracts - file-earmark-text/contract icon */
[data-menu-name="contract"].sidebar-listTitle .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z'/%3E%3Cpath d='M4.5 12.5A.5.5 0 0 1 5 12h3a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5m0-2A.5.5 0 0 1 5 10h6a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5m1.639-3.708 1.33.886 1.854-1.855a.25.25 0 0 1 .289-.047l1.888.974V7.5a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V7s1.54-1.274 1.639-1.208M6.25 6a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5'/%3E%3C/svg%3E");
}

/* Configuration - sliders/settings icon */
[data-menu-name="configuration"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.5 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M9.05 3a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0V3zM4.5 7a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M2.05 8a2.5 2.5 0 0 1 4.9 0H16v1H6.95a2.5 2.5 0 0 1-4.9 0H0V8zm9.45 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-2.45 1a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0v-1z'/%3E%3C/svg%3E");
}

/* Renewals - arrow-repeat/refresh icon */
[data-menu-name="renewals"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M11.534 7h3.932a.25.25 0 0 1 .192.41l-1.966 2.36a.25.25 0 0 1-.384 0l-1.966-2.36a.25.25 0 0 1 .192-.41m-11 2h3.932a.25.25 0 0 0 .192-.41L2.692 6.23a.25.25 0 0 0-.384 0L.342 8.59A.25.25 0 0 0 .534 9'/%3E%3Cpath fill-rule='evenodd' d='M8 3c-1.552 0-2.94.707-3.857 1.818a.5.5 0 1 1-.771-.636A6.002 6.002 0 0 1 13.917 7H12.9A5 5 0 0 0 8 3M3.1 9a5.002 5.002 0 0 0 8.757 2.182.5.5 0 1 1 .771.636A6.002 6.002 0 0 1 2.083 9z'/%3E%3C/svg%3E");
}

/* Contract Renewal - arrow-repeat icon (list item) */
[data-menu-name="contractRenewal"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M11.534 7h3.932a.25.25 0 0 1 .192.41l-1.966 2.36a.25.25 0 0 1-.384 0l-1.966-2.36a.25.25 0 0 1 .192-.41m-11 2h3.932a.25.25 0 0 0 .192-.41L2.692 6.23a.25.25 0 0 0-.384 0L.342 8.59A.25.25 0 0 0 .534 9'/%3E%3Cpath fill-rule='evenodd' d='M8 3c-1.552 0-2.94.707-3.857 1.818a.5.5 0 1 1-.771-.636A6.002 6.002 0 0 1 13.917 7H12.9A5 5 0 0 0 8 3M3.1 9a5.002 5.002 0 0 0 8.757 2.182.5.5 0 1 1 .771.636A6.002 6.002 0 0 1 2.083 9z'/%3E%3C/svg%3E");
}

/* Settings - gear icon */
[data-menu-name="settings"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492M5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115z'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Archive Objects Section Icons
   ========================================================================== */

/* Transactions - receipt icon */
[data-menu-name="transactions"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M1.92.506a.5.5 0 0 1 .434.14L3 1.293l.646-.647a.5.5 0 0 1 .708 0L5 1.293l.646-.647a.5.5 0 0 1 .708 0L7 1.293l.646-.647a.5.5 0 0 1 .708 0L9 1.293l.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .801.13l.5 1A.5.5 0 0 1 15 2v12a.5.5 0 0 1-.053.224l-.5 1a.5.5 0 0 1-.8.13L13 14.707l-.646.647a.5.5 0 0 1-.708 0L11 14.707l-.646.647a.5.5 0 0 1-.708 0L9 14.707l-.646.647a.5.5 0 0 1-.708 0L7 14.707l-.646.647a.5.5 0 0 1-.708 0L5 14.707l-.646.647a.5.5 0 0 1-.708 0L3 14.707l-.646.647a.5.5 0 0 1-.801-.13l-.5-1A.5.5 0 0 1 1 14V2a.5.5 0 0 1 .053-.224l.5-1a.5.5 0 0 1 .367-.27m.217 1.338L2 2.118v11.764l.137.274.51-.51a.5.5 0 0 1 .707 0l.646.647.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.509.509.137-.274V2.118l-.137-.274-.51.51a.5.5 0 0 1-.707 0L12 1.707l-.646.647a.5.5 0 0 1-.708 0L10 1.707l-.646.647a.5.5 0 0 1-.708 0L8 1.707l-.646.647a.5.5 0 0 1-.708 0L6 1.707l-.646.647a.5.5 0 0 1-.708 0L4 1.707l-.646.647a.5.5 0 0 1-.708 0z'/%3E%3Cpath d='M3 4.5a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m8-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}

/* Entities - people icon */
[data-menu-name="entities"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1zm-7.978-1L7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002-.014.002zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0M6.936 9.28a6 6 0 0 0-1.23-.247A7 7 0 0 0 5 9c-4 0-5 3-5 4q0 1 1 1h4.216A2.24 2.24 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816M4.92 10A5.5 5.5 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275zM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0m3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4'/%3E%3C/svg%3E");
}

/* Accounting - calculator icon */
[data-menu-name="accounting"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M12 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z'/%3E%3Cpath d='M4 2.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zm0 4a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

/* Company - building icon */
[data-menu-name="company"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M4 2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z'/%3E%3Cpath d='M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1zm11 0H3v14h3v-2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5V15h3z'/%3E%3C/svg%3E");
}

/* Other - grid icon */
[data-menu-name="other"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M1 2.5A1.5 1.5 0 0 1 2.5 1h3A1.5 1.5 0 0 1 7 2.5v3A1.5 1.5 0 0 1 5.5 7h-3A1.5 1.5 0 0 1 1 5.5zM2.5 2a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5zm6.5.5A1.5 1.5 0 0 1 10.5 1h3A1.5 1.5 0 0 1 15 2.5v3A1.5 1.5 0 0 1 13.5 7h-3A1.5 1.5 0 0 1 9 5.5zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5zM1 10.5A1.5 1.5 0 0 1 2.5 9h3A1.5 1.5 0 0 1 7 10.5v3A1.5 1.5 0 0 1 5.5 15h-3A1.5 1.5 0 0 1 1 13.5zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5zm6.5.5A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 13.5zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5z'/%3E%3C/svg%3E");
}

/* Custom Records - puzzle icon */
[data-menu-name="customrecords"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M4.708 5.578L2.061 8.224l.473.473.771-.772L4.25 8.87l.772-.771-.474-.474-1.792-1.792-.048-.048zm.012 4.844l-.772.771-.473-.472 2.646-2.647.474.474-.772.771.945.945.771-.772.474.474-2.647 2.646-.473-.473.771-.771-.944-.946zM8.5 1.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0zM8 11a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3A.5.5 0 0 1 8 11m5.5-1.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0zm-5 4a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5m-7-8a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm12 0a.5.5 0 0 0 0 1h.5a.5.5 0 0 0 0-1z'/%3E%3C/svg%3E");
}

/* Dark mode icon colors */
[data-bs-theme="dark"] [data-menu-name="archive"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5V5a1 1 0 0 1-1-1zm2 3v7.5A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5V5zm13-3H1v2h14zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="archiveIndex"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m-3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2m0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="fileCabinet"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M.54 3.87.5 3a2 2 0 0 1 2-2h3.672a2 2 0 0 1 1.414.586l.828.828A2 2 0 0 0 9.828 3H14a2 2 0 0 1 2 2v1.5a.5.5 0 0 1-1 0V5a1 1 0 0 0-1-1H9.828a3 3 0 0 1-2.12-.879l-.83-.828A1 1 0 0 0 6.172 2H2.5a1 1 0 0 0-1 .981z'/%3E%3Cpath d='M14.5 5H7.707a1 1 0 0 0-.707.293L5.586 6.707A1 1 0 0 1 4.879 7H1.5A1.5 1.5 0 0 0 0 8.5v6A1.5 1.5 0 0 0 1.5 16h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 5'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="snapshots"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M10.5 8.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0'/%3E%3Cpath d='M2 4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1.172a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 9.172 2H6.828a2 2 0 0 0-1.414.586l-.828.828A2 2 0 0 1 3.172 4zm.5 2a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1m9 2.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="userAccess"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5.784 6A2.24 2.24 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.3 6.3 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] .sidebar-list [data-menu-name="userAccess"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4m-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10s-3.516.68-4.168 1.332c-.678.678-.83 1.418-.832 1.664z'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="inviteUser"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M6 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4 8c0 1-1 1-1 1H1s-1 0-1-1 1-4 6-4 6 3 6 4m-1-.004c-.001-.246-.154-.986-.832-1.664C9.516 10.68 8.289 10 6 10s-3.516.68-4.168 1.332c-.678.678-.83 1.418-.832 1.664z'/%3E%3Cpath fill-rule='evenodd' d='M13.5 5a.5.5 0 0 1 .5.5V7h1.5a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0V8h-1.5a.5.5 0 0 1 0-1H13V5.5a.5.5 0 0 1 .5-.5'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="userAccessRestriction"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="feedback"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="feedbackNew"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z'/%3E%3Cpath fill-rule='evenodd' d='M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="settings"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492M5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115z'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="account"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m.256 7a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1zm3.63-4.54c.18-.613 1.048-.613 1.229 0l.043.148a.64.64 0 0 0 .921.382l.136-.074c.561-.306 1.175.308.87.869l-.075.136a.64.64 0 0 0 .382.92l.149.045c.612.18.612 1.048 0 1.229l-.15.043a.64.64 0 0 0-.38.921l.074.136c.305.561-.309 1.175-.87.87l-.136-.075a.64.64 0 0 0-.92.382l-.045.149c-.18.612-1.048.612-1.229 0l-.043-.15a.64.64 0 0 0-.921-.38l-.136.074c-.561.305-1.175-.309-.87-.87l.075-.136a.64.64 0 0 0-.382-.92l-.148-.045c-.613-.18-.613-1.048 0-1.229l.148-.043a.64.64 0 0 0 .382-.921l-.074-.136c-.306-.561.308-1.175.869-.87l.136.075a.64.64 0 0 0 .92-.382zM14 12.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="archiveSettings"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.5 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M9.05 3a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0V3zM4.5 7a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3M2.05 8a2.5 2.5 0 0 1 4.9 0H16v1H6.95a2.5 2.5 0 0 1-4.9 0H0V8zm9.45 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-2.45 1a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0v-1z'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="ticket"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a5 5 0 0 0-5 5v1h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a6 6 0 1 1 12 0v6a2.5 2.5 0 0 1-2.5 2.5H9.366a1 1 0 0 1-.866.5h-1a1 1 0 1 1 0-2h1a1 1 0 0 1 .866.5H11.5A1.5 1.5 0 0 0 13 12h-1a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h1V6a5 5 0 0 0-5-5'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="system"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M5 10.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5'/%3E%3Cpath d='M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2'/%3E%3Cpath d='M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="loginEvent"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M0 8a4 4 0 0 1 7.465-2H14a.5.5 0 0 1 .354.146l1.5 1.5a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0L13 9.207l-.646.647a.5.5 0 0 1-.708 0L11 9.207l-.646.647a.5.5 0 0 1-.708 0L9 9.207l-.646.647A.5.5 0 0 1 8 10h-.535A4 4 0 0 1 0 8m4-3a3 3 0 1 0 2.712 4.285A.5.5 0 0 1 7.163 9h.63l.853-.854a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.793-.793-1-1h-6.63a.5.5 0 0 1-.451-.285A3 3 0 0 0 4 5'/%3E%3Cpath d='M4 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="downloadHistory"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5'/%3E%3Cpath d='M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z'/%3E%3C/svg%3E");
}

/* Dark mode - Archive Objects Section Icons */
[data-bs-theme="dark"] [data-menu-name="transactions"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M1.92.506a.5.5 0 0 1 .434.14L3 1.293l.646-.647a.5.5 0 0 1 .708 0L5 1.293l.646-.647a.5.5 0 0 1 .708 0L7 1.293l.646-.647a.5.5 0 0 1 .708 0L9 1.293l.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .801.13l.5 1A.5.5 0 0 1 15 2v12a.5.5 0 0 1-.053.224l-.5 1a.5.5 0 0 1-.8.13L13 14.707l-.646.647a.5.5 0 0 1-.708 0L11 14.707l-.646.647a.5.5 0 0 1-.708 0L9 14.707l-.646.647a.5.5 0 0 1-.708 0L7 14.707l-.646.647a.5.5 0 0 1-.708 0L5 14.707l-.646.647a.5.5 0 0 1-.708 0L3 14.707l-.646.647a.5.5 0 0 1-.801-.13l-.5-1A.5.5 0 0 1 1 14V2a.5.5 0 0 1 .053-.224l.5-1a.5.5 0 0 1 .367-.27m.217 1.338L2 2.118v11.764l.137.274.51-.51a.5.5 0 0 1 .707 0l.646.647.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.646.646.646-.646a.5.5 0 0 1 .708 0l.509.509.137-.274V2.118l-.137-.274-.51.51a.5.5 0 0 1-.707 0L12 1.707l-.646.647a.5.5 0 0 1-.708 0L10 1.707l-.646.647a.5.5 0 0 1-.708 0L8 1.707l-.646.647a.5.5 0 0 1-.708 0L6 1.707l-.646.647a.5.5 0 0 1-.708 0L4 1.707l-.646.647a.5.5 0 0 1-.708 0z'/%3E%3Cpath d='M3 4.5a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1h-6a.5.5 0 0 1-.5-.5m8-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5m0 2a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="entities"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1zm-7.978-1L7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002-.014.002zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0M6.936 9.28a6 6 0 0 0-1.23-.247A7 7 0 0 0 5 9c-4 0-5 3-5 4q0 1 1 1h4.216A2.24 2.24 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816M4.92 10A5.5 5.5 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275zM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0m3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="accounting"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M12 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z'/%3E%3Cpath d='M4 2.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5zm0 4a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="company"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M4 2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z'/%3E%3Cpath d='M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1zm11 0H3v14h3v-2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5V15h3z'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="other"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M1 2.5A1.5 1.5 0 0 1 2.5 1h3A1.5 1.5 0 0 1 7 2.5v3A1.5 1.5 0 0 1 5.5 7h-3A1.5 1.5 0 0 1 1 5.5zM2.5 2a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5zm6.5.5A1.5 1.5 0 0 1 10.5 1h3A1.5 1.5 0 0 1 15 2.5v3A1.5 1.5 0 0 1 13.5 7h-3A1.5 1.5 0 0 1 9 5.5zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5zM1 10.5A1.5 1.5 0 0 1 2.5 9h3A1.5 1.5 0 0 1 7 10.5v3A1.5 1.5 0 0 1 5.5 15h-3A1.5 1.5 0 0 1 1 13.5zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5zm6.5.5A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 13.5zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5z'/%3E%3C/svg%3E");
}

[data-bs-theme="dark"] [data-menu-name="customrecords"] .sidebar-menu-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M4.708 5.578L2.061 8.224l.473.473.771-.772L4.25 8.87l.772-.771-.474-.474-1.792-1.792-.048-.048zm.012 4.844l-.772.771-.473-.472 2.646-2.647.474.474-.772.771.945.945.771-.772.474.474-2.647 2.646-.473-.473.771-.771-.944-.946zM8.5 1.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0zM8 11a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3A.5.5 0 0 1 8 11m5.5-1.5a.5.5 0 0 0-1 0v5a.5.5 0 0 0 1 0zm-5 4a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H9a.5.5 0 0 1-.5-.5m-7-8a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1zm12 0a.5.5 0 0 0 0 1h.5a.5.5 0 0 0 0-1z'/%3E%3C/svg%3E");
}

/* css related to .navbar */
.custom-navbar {
  height: var(--navbar-height);
  display: flex;
  justify-content: space-between;
  background-color: var(--bg-secondary);
  padding: 0 0px;
  box-sizing: border-box;
}

.custom-navbar-left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
  width: clamp(240px, 15vw, 300px);
  box-sizing: border-box;
  flex-shrink: 0;
}

.logo-container img.logo {
  width: 150px;
  display: block;
}

.logo-container img.logo2 {
  display: none;
}

@media screen and (max-width: 1300px) {
  .logo-container img.logo {
    display: none;
  }

  .logo-container img.logo2 {
    display: block;
  }

  .logo-container {
    width: auto;
    min-width: 50px;
    padding: 0 10px;
  }
}

.header-title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tenant-title {
  font-size: 1.62rem;
  color: var(--text-primary);
}

.archive-title {
  font-size: 1.45rem;
  color: var(--text-primary);
}

@media screen and (max-width: 980px) {
  .archive-title {
    display: none;
  }
}

/* Small mobile: hide tenant/archive name area */
@media screen and (max-width: 500px) {
  .header-title {
    display: none;
  }
}

.guide-btn,
.close-menu-btn {
  margin-top: 10px;
  margin-left: 15px;
  background-color: transparent;
  border-radius: 50%;
  border: none;
  padding: 8px;
}

.guide-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.close-menu-btn:active {
  background-color: rgba(0, 0, 0, 0.1);
}

.guide-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease-in, visibility 200ms ease;
}

.guide-menu-open {
  opacity: 1;
  visibility: visible;
}

.guide-menu-header {
  height: 60px;
  background-color: #F9F9F9;
}

.guide-menu-content {
  width: 240px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-240px);
  background-color: #F9F9F9;
  transition: transform 300ms ease;
}

.guide-menu-body {
  height: calc(100vh - clamp(64px, 4vw, 80px));
}

.guide-menu-content-open {
  transform: translateX(0);
}

.custom-navbar-list,
.custom-navbar-list-right {
  display: flex;
  list-style: none;
  padding: 0;
  padding-top: 0px;
  height: 100%;
}

.custom-navbar-list li {
  display: flex;
  height: 100%;
}

.navbar-link {
  color: white;
}

/* css related to menu */
.custom-navbar-menu {
  height: 40px !important;
  max-height: 40px !important;
  min-height: 40px !important;
  display: flex;
  padding: 0 8px;
  box-sizing: border-box;
  background-color: #023499;
}

.employment-history {
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

.employment-history a {
  color: var(--text-secondary);
}

.employment-history a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.navbar-brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-company-name {
  color: black;
  font-size: 20px;
  margin-top: 3px;
}

.highlight {
  background-color: #ddd;
}

/* css related to login and register links  */
.login-link,
.register-link {
  height: 100%;
  padding: 15px;
}

.login-link a,
.register-link a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

.login-link a:hover,
.register-link a:hover {
  color: white;
  text-decoration: underline;
}



/* css related to data table */
.dataTable-container {
  width: 100%;
  padding-top: 0px;
  padding-bottom: 15px;
  animation: fadeIn;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.2s;
  /* don't forget to set a duration! */
  position: relative;
}

.page {
  animation: fadeIn;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.4s;
  /* don't forget to set a duration! */

}

.select2-container--open {
  animation: fadeIn;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.4s;
  /* don't forget to set a duration! */
}

.daterangepicker {
  animation: fadeIn;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.4s;
  /* don't forget to set a duration! */
}


.dataTable-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.dataTable-header > .text-left {
  flex: 1 1 auto;
}

.dataTable-header.sublist-header {
  padding-left: 15px;
}

/* Remove excessive margin from record-table in sublists */
.dataTable-container:has(.sublist-header) .record-table {
  margin-bottom: 0;
}

/* Sublist table container should fit content, not expand to fill parent */
#sublist .table-container,
#sublist-tabs ~ #sublist .table-container,
.dataTable-container:has(.sublist-header) .table-container {
  height: auto !important;
  min-height: 0 !important;
}

/* Ensure sublist dataTable-container fits content */
#sublist .dataTable-container,
.dataTable-container:has(.sublist-header) {
  height: auto !important;
  min-height: 0 !important;
}

/* Ensure #sublist itself fits content */
#sublist {
  height: auto !important;
}

/* Light mode only: sublist containers get subtle background */
:root:not([data-bs-theme="dark"]) .dataTable-container:has(.sublist-header) {
  background-color: #f0f2f5;
  border: 1px solid #d0d7de;
  border-radius: 8px;
}

.table-container {
  overflow-x: auto;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  min-height: 50px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  box-sizing: border-box;
  background-color: var(--bg-primary);
}

.record-table {
  color: var(--text-primary);
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 50px;
}

.record-table .archive-table-cell-text a.archive-details-link {
  color: #337ab7 !important;
}

.record-table thead {
  border-bottom: 1px solid var(--border-color);
}


.archive-details-box-label {
  font-size: 1.2rem;
}

.record-table thead th {
  position: sticky;
  top: 0;
  font-size: 1.2rem;
  font-weight: 400 !important;
  background-color: var(--table-header-bg);
  color: var(--text-primary);
  z-index: 30;
  text-transform: uppercase;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  padding: 10px 10px;
  white-space: nowrap;
}

.record-table thead th.action-header {
  width: 50px;
  text-align: center;
}

.record-table thead tr {
  background-color: var(--table-header-bg);
  color: var(--text-primary);
}


.record-table tr {
  border-bottom: 1px solid var(--border-color);
}

.archive-table-cell-text,
.record-table td,
.archive-details-box-value {
  font-size: 1.3rem;
  font-family: BWHaasGroteskWeb, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif !important;
}

.record-table td {
  font-size: 1.3rem;
  font-weight: normal;
  padding: 4px 10px;
  text-indent: 0px;
  box-sizing: border-box;
  word-wrap: break-word;
  display: table-cell;
  vertical-align: top;
  white-space: nowrap;
}

.record-table td.checkbox-cell {
  position: relative;
}

label.table-cell-checkbox-label {
  margin-bottom: 0px;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.record-table.wrap-cells td {
  white-space: normal;
}

.overflow-td {
  overflow-wrap: anywhere !important;
}

.value-name {
  overflow-wrap: anywhere !important;
  width: fit-content;
  max-width: 100%;
  position: relative;
  color: var(--text-primary);
}




.record-table th span {
  cursor: pointer;
  font-size: 1.2rem;
  user-select: text;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
}

.record-table th span.sortDisabled {
  cursor: default;
}

table.record-table tbody tr:nth-child(even) {
  background-color: var(--table-row-even, var(--table-stripe-bg));
}

/* Hover is now handled in theme.css with accent bar */

/* Bulk add templates - existing row highlight */
table.record-table tbody tr.existing-row {
  background-color: var(--warning-bg, #fff3cd);
}

table.record-table tbody tr.existing-row:hover {
  background-color: var(--warning-bg, #fff3cd);
}

.column-align-right,
.cell-align-right {
  text-align: right;
  padding: 3px 10px 3px 0px !important;
  box-sizing: border-box;
}

.tableCell-link a {
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.3rem;
}

.tableCell-link a.recordTitle-link {
  color: var(--link-color, #0d6efd);
}

.tableCell-link a.recordTitle-link:hover {
  color: var(--link-hover, #0a58ca);
  text-decoration: underline;
}

.tableCell-link a:hover {
  color: var(--text-primary);
  text-decoration: underline
}

.edit-cell {
  max-width: 50px;
}

.datetime-cell {
  width: 200px;
}

.date-cell {
  width: 100px;
}

.delete-link {
  cursor: pointer;
}

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

.array-cell-text::after {
  content: ",";
  margin-right: 3px;
}

.array-cell .array-cell-text:last-child::after {
  content: '';
}

/* Restrictions cell for userAccess list */
.restrictions-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

td.restrictions-cell a.restriction-tag {
  display: block;
  color: #0066cc !important;
  text-decoration: none;
  font-size: 0.9em;
  white-space: nowrap;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
}

td.restrictions-cell a.restriction-tag:hover {
  text-decoration: underline;
  color: #004499 !important;
}

/* Restriction links in detail view */
a.restriction-link {
  color: #0066cc !important;
  text-decoration: none;
}

a.restriction-link:hover {
  text-decoration: underline;
  color: #004499 !important;
}

.line-number-cell-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pagination-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 6px 6px;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
}

.item-pagination-container {
  justify-content: flex-end;
}

.pagination-btn-container {
  display: flex;
  align-items: center;
  gap: 5px;
  /* margin-right: 15px; */
}

.prev-btn,
.next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 34px;
  box-sizing: border-box;
}

.prev-btn[disabled],
.next-btn[disabled] {
  cursor: pointer;
}

.next-caret {
  transform: rotate(-90deg) scale(1.8);
  color: var(--text-secondary);
  margin-left: -4px !important;
}

.previous-caret {
  transform: rotate(90deg) scale(1.8);
  margin-left: -4px !important;
  color: var(--text-secondary);

}

.page-dropdown-btn {
  width: 100%;
}

.btn .caret {
  /* override bs for page-caret */
  margin-left: 5px;
}

.page-menu {
  width: 100%;
  min-width: 125px;
}

.pageMenu-item {
  width: 100%;
  padding: 6px 12px;
  box-sizing: border-box;
  cursor: pointer;
}

.pageMenu-item:hover {
  background-color: rgba(9, 105, 218, 0.08);
}

.filters {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.filters.sp-between {
  justify-content: space-between;
  align-items: center;
}

.seats-info {
  font-size: 1.2em;
}


.filter-checkbox-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hidden-datepicker {
  opacity: 0;
  height: 0px;
}

.dataTable-checkbox-label {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  gap: 8px;
  padding: 8px 12px;
  box-sizing: border-box;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 0px;
  font-size: 1.35rem;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}

.dataTable-checkbox-label:hover {
  background-color: var(--bg-secondary);
}

.dataTable-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--app-color, #0969da);
  cursor: pointer;
}

.reset-btn-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: auto;
}

.reset-btn {
  font-size: 1.35rem;
  padding: 6.3595px 12px;
  box-sizing: border-box;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
  min-height: 38px;
}

.reset-btn:hover:not(:disabled) {
  background-color: var(--bg-tertiary);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.reset-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--bg-secondary);
  color: var(--text-muted);
}

/* Light mode only hover/focus/active states */
:root:not([data-bs-theme="dark"]) .reset-btn:hover,
:root:not([data-bs-theme="dark"]) .reset-btn:focus,
:root:not([data-bs-theme="dark"]) .reset-btn:active,
:root:not([data-bs-theme="dark"]) .reset-btn:first-child:active {
  background-color: #efefef;
}

.search-btn-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.search-btn {
  font-size: 1.35rem;
  padding: 6.3595px 16px;
  box-sizing: border-box;
  background-color: #0d6efd;
  color: white;
  border: 1px solid #0d6efd;
}

.search-btn:hover,
.search-btn:focus,
.search-btn:active,
.search-btn:first-child:active {
  background-color: #4d94ff !important;
  color: white !important;
  border-color: #4d94ff !important;
}

.searchForm {
  display: inline-block;
}

.text-filter {
  display: inline-block;
}

.search-input {
  height: auto;
  border-radius: 4px;
}

.label-text {
  text-transform: uppercase;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-primary);
  display: block;
  width: fit-content;
  position: relative;
  margin-bottom: 5px;
}

.label-text.view {
  margin-bottom: 0px;
}

.label-text.inline {
  margin-top: 5px;
  min-width: 150px;
}

.label-text.astarisk:after {
  content: '*';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e54c0;
}

.label-text.negation:after {
  content: '\00AC';
  position: absolute;
  right: -10px;
  top: 0%;
  transform: translateY(-30%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #b5a214;
}

.search-btn {
  display: inline-block;
}

.listheadersortup {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid currentColor;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

.listheadersortdown {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid currentColor;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

.record-info {
  color: var(--text-secondary);
  padding: 0 15px;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.select-multiple-ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.select-multiple-ul li:after {
  content: ",";
  margin-right: 3px;
}

.select-multiple-ul li:last-child:after {
  content: '';
}


.notification-msg {
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  margin-right: 10px;
}


/* css related to left top dropdowns */
.header-dropdown {
  height: 100%;
  color: white;
}

.header-dropdown-btn {
  border-radius: 0;
  height: 100%;
  color: white;
  background-color: #023499;
  font-size: 16px;
  padding-top: 0px;
  padding-bottom: 0px;
  border: none;
}

.header-btn {
  border-radius: 0;
  height: 100%;
  color: white;
  background-color: #023499;
  font-size: 16px;
  padding: 0;
  border: none;
}

.header-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  padding: 0 12px;
  text-decoration: none;
}

.header-btn a:hover {
  color: white;
  background-color: #2a53a5;
  text-decoration: none;
}

.header-dropdown-menu {
  max-height: calc(100vh - 103.67px);
  overflow-y: auto;
  scrollbar-color: #ececec #f9f9f9;
}

.header-dropdown:hover .dropdown-menu {
  display: block;
}

.header-dropdown-btn:hover,
.header-dropdown.open-on-hover .dropdown-menu {
  background-color: #2a53a5;
  color: white;

}

.header-dropdown:hover .header-dropdown-btn,
.header-dropdown.open-on-hover .header-dropdown-btn {
  background-color: #2a53a5;
}

.header-dropdown-label {
  color: white;
}

.btn.header-dropdown-btn.active.focus,
.btn.header-dropdown-btn.active:focus,
.btn.header-dropdown-btn.focus,
.btn.header-dropdown-btn:active.focus,
.btn.header-dropdown-btn:active:focus,
.btn.header-dropdown-btn:focus {
  outline: none;
  outline-offset: 0px;
  box-shadow: none;
}

.highlight-table-name {
  background-color: #ddd;
}

/* css related to right top dropdown */
.custom-navbar-right {
  display: flex;
  align-items: center;
  height: 100%;
}

.right-dropdown {
  padding: 0px;
  height: 100%;
  flex-shrink: 0;
}

.right-dropdown-caret {
  color: var(--text-primary);
  margin-left: 15px;
  margin-right: 5px;
}

.right-dropdown-btn {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  width: 100%;
  padding: 0 5px;
  height: 100%;
  user-select: none;
}

.right-dropdown:hover .dropdown-menu {
  display: block;
  color: var(--text-primary);
  word-wrap: break-word;
  width: clamp(240px, 15vw, 300px);
  max-width: clamp(240px, 15vw, 300px);
  overflow-y: auto;
  max-height: calc(100vh - clamp(64px, 4vw, 80px));
  right: 0;
  left: auto;
}

.right-dropdown:hover .right-dropdown-btn {
  background-color: var(--bg-tertiary);
}

.rdm-highlight {
  background-color: var(--app-color-light);
  border-left: 3px solid var(--app-color);
}

.rdm-app-icon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.user-info-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-icon {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.navbar-email .navbar-tenant,
.navar-tenant {
  font-size: 1.4rem;
  color: var(--text-secondary);
}

.navbar-user {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.navigateByRole,
.navigateByTenant,
.navigateToArchive {
  padding: 10px 0 10px 8px;
  display: flex;
}

.navigateByRole:hover,
.navigateByTenant:hover,
.navigateToArchive:hover {
  background-color: var(--dropdown-hover);
}

.navigateToArchive a {
  text-decoration: none;
  color: var(--text-primary);
  word-wrap: break-word;
}

.tenant-name {
  padding: 10px 0 10px 8px;
}

.tenant-name:hover,
.access-list-item:hover {
  background-color: var(--dropdown-hover);
}

.other-list-item {
  padding: 10px 0 10px 8px;
}

.access-list {
  list-style: none;
  padding: 0;
}

.access-list-item {
  padding: 10px 0 10px 16px;
}

/* css related to dropdown for datatable filter */
.dropdown-menu-filter {
  max-height: 300px;
  overflow-y: auto;
  scrollbar-color: #ececec #f9f9f9;
}

.dropdown-menu-item {
  padding: 5px 0 5px 5px;
  width: 100%;
}

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

.ddl-container {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.35rem;
  position: relative;
}

/* css related to dropdown Lookup (selectSingle) filter for datatable filter */
.form-dropdown-lookup~.select2-container {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 200px !important;
  width: 200px !important;
}

.form-ddl-link {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
}

.unrendered {
  visibility: hidden;
  opacity: 0;
}

.rendered {
  transition: opacity 1s ease;
  visibility: visible;
  opacity: 1;
}

.full-width {
  width: 100%;
}

.select2-container .select2-results__option {
  font-size: 1.35rem;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  font-size: 1.35rem;
}

.form-select-dropdown-aggregate~.select2-container {
  width: 100% !important;
}

/* .filter-dropdown-lookup{
  width:100%;
} */
.filter-dropdown-lookup-container .selection {
  margin-top: -5px;
  font-size: 1.35rem;
}

/* Multi-select filter styling */
.filter-dropdown-lookup-multiple~.select2-container {
  width: 250px !important;
}

.filter-dropdown-lookup-multiple~.select2-container .select2-selection--multiple {
  min-height: 34px;
  border: 1px solid var(--input-border);
}

.filter-dropdown-lookup-multiple~.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 3px;
  font-size: 1.1rem;
}

.filter-dropdown-lookup,
.saveSearch-select {
  height: 40px !important;
}

.filter-dropdown-lookup-label {
  display: block;
}

.filter-dropdown-lookup~.select2-container .select2-selection--single,
.select-single~.select2-container .select2-selection--single {
  height: 34px;
  border: 1px solid var(--input-border);
}

.filter-dropdown-lookup~.select2-container--default .select2-selection--single .select2-selection__arrow,
.select-single~.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px;
}

.filter-dropdown-lookup~.select2-container--default .select2-selection--single .select2-selection__clear,
.select-single~.select2-container--default .select2-selection--single .select2-selection__clear {
  height: 34px;
}

.select-single~.select2-container,
.select-multiple~.select2-container {
  width: 100% !important;
}

.filter-dropdown-lookup~.select2-container {
  width: 250px !important;
}

.parentId_single_select~.select2-container {
  width: 400px !important;
}

.select2-container--open {
  z-index: 9999 !important;
}

@media screen and (max-width: 600px) {
  .ar-filter-dd-container {
    width: 100%;
  }

  .archive-filter-dropdown~.select2-container {
    width: 100% !important
  }

  .archive-search-form {
    width: 100%;
  }

  .archive-date-fitler {
    width: 100%;
  }
}


.filter-date-range {
  min-width: 250px;
}

.saveSearch-select~.select2-container {
  /* width:500px !important; */
  width: 100% !important;
}

#savedSearch-dropdown~.select2-container {
  width: 100% !important;
}

.full-width~.select2-container {
  width: 100% !important;
}

/* css related to dropdown lookup for datatable filter */
.date-input {
  min-width: 200px;
}

.submit-btn:disabled {
  background-color: red;
}

.delete-btn-container {
  text-align: left;
}


/* css related to setting page */
.settings-form,
.preference-form {
  width: 50%;
}

.setting-tab-link {
  color: white;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 16px;
}

.setting-tab-link:hover {
  color: white;
  text-decoration: none;
  background-color: #2a53a5;
}

/* css related to Feedback */
.feedback-container {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto 15px auto;
  color: var(--text-primary);
}

.feedback-container p {
  color: var(--text-secondary);
}

.feedback-header {
  color: var(--text-primary);
  text-align: center;
}

.feedback-list {
  color: var(--text-secondary);
  margin: 20px 0;
}

/* css related to main .handlebars*/
.no-dropdown {
  display: none;
}

.page-menu {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

/* form hiding related css */
.toggleDatesLink {
  cursor: pointer;
  color: rgb(50, 50, 50);
  text-decoration: underline;
}

/* archive index related css */
.archive-index-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: 10px;

}

.archive-index-box-container {
  animation: fadeIn;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 0.2s;
  /* don't forget to set a duration! */
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  border-width: 0px 0px 0px 1px;
  margin: 10px 0px 10px 0px;
  padding: 0;
}

.archive-index-container .row {
  display: flex;
  flex-wrap: wrap;
}

.archive-index-title {
  text-align: center;
  font-size: 24px;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  text-decoration: underline;
  margin-bottom: 20px;
}

.archive-index-box {
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  border-width: 1px 1px 1px 0px;
  padding: 0px;
}

.archive-index-box-container .archive-index-box:nth-child(n + 4) {
  border-top: none;
}


/* @media screen and (max-width: 768px){
  .archive-index-box-container .archive-index-box:nth-child(n + 3){
    border-top: none;
  }
} */

@media screen and (max-width: 575px) {
  .archive-index-box-container .col-xs-6 {
    width: 100%;
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
  }

  .archive-index-box-container {
    animation: fadeIn;
    /* referring directly to the animation's @keyframe declaration */
    animation-duration: 0.2s;
    /* don't forget to set a duration! */
    border-style: none;
    border-color: none;
    border-width: none;
    margin: 10px 0px 0 0px;
  }

  .archive-index-box-container .archive-index-box:nth-child(n + 3) {
    border-top: 1px solid var(--border-color);
  }
}

.archive-index-box-title {
  padding: 10px 5px;
  box-sizing: border-box;
  text-align: center;
  background-color: #ebeef2;
  font-size: 18px;
  color: var(--text-primary);
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.expand-all {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 10px;
  cursor: pointer;
  font-size: 1.2rem;
}

.archive-index-box-ul {
  list-style: none;
  margin: 0px;
  padding: 8px 0px;
}

.archive-index-box-ul > li {
  padding: 2px 20px;
  margin-bottom: 0;
  border-left: 4px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.archive-index-box-ul > li:first-child {
  padding-top: 1px;
}

/* Only show hover on parent li when NOT hovering over sub-table items */
.archive-index-box-ul > li:hover:not(:has(.sub-table-ul li:hover)) {
  background-color: rgba(68, 147, 248, 0.04);
  border-left-color: var(--app-color);
}

.archive-index-box-ul > li > .main-table-link {
  display: flex;
  align-items: center;
}

.archive-index-box-ul li .main-table-link.no-sub-tables {
  padding-left: 15px;
}

.collapse-plus-btn {
  cursor: pointer;
  min-width: 15px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  line-height: 1;
}

.sub-table-ul {
  list-style: none;
  padding: 0;
  margin: 2px 0 0 0;
}

.sub-table-ul li {
  padding: 2px 0;
  padding-left: 20px;
  margin: 0;
  border-left: 4px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.sub-table-ul li:hover {
  background-color: rgba(68, 147, 248, 0.04);
  border-left-color: var(--app-color);
}

.sub-table-ul li a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #2d3748;
}

.sub-table-ul li a:hover .archive-index-tableName {
  text-decoration: underline;
  color: #2d3748;
}

.sub-table-ul li a:hover {
  color: inherit;
}

.archive-index-box-ul li a {
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.archive-index-tableName {
  text-decoration: none;
  color: #2d3748;
}

.archive-index-rows {
  color: #4a5568;
  font-variant-numeric: tabular-nums;
  font-size: 0.9em;
  min-width: 60px;
  text-align: right;
}

.archive-index-box-ul li a:hover {
  color: inherit;
  text-decoration: none;
}

.archive-index-box-ul li a:hover .archive-index-tableName {
  text-decoration: underline;
  color: #2d3748;
}

/* css related to file archive */
.fc-refresh-btn {
  border: 1px solid var(--border-color);
  border-radius: 50%;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.fc-refresh-btn:hover {
  background-color: var(--bg-tertiary, #efefef);
}

.fc-breadcrumb {
  margin-top: 10px;
  background-color: var(--bg-secondary);
  padding: 12px 16px;
  border-radius: 6px;
}

.fc-breadcrumb .breadcrumb {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  min-height: 24px;
}

.fc-breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}

.fc-breadcrumb .breadcrumb-item a {
  line-height: 1.4;
}

.breadcrumb>.active a {
  color: #777;
}

.fc-total-count-container {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.fc-total-count,
.fc-total-count strong {
  font-size: 2.5rem;
}

.fc-total-meta {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.fc-table-header {
  cursor: pointer;
}

.fc-pg-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  background-color: var(--bg-secondary, #eaeaea);
  padding: 5px 15px 5px 0px;
  box-sizing: border-box;
  border: 1px solid var(--border-color, #ccc);
}

.breadcrumbs {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.fc-table-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: auto;
}

.fc-table-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.fc-table-container tbody tr {
  border-bottom: 1px solid var(--border-color, #ccc);
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.fc-table-container tbody tr:nth-child(even) {
  background-color: var(--table-stripe-bg, #f5f5f5);
}

.fc-table-container tbody tr:hover {
  background-color: rgba(9, 105, 218, 0.06) !important;
  box-shadow: inset 3px 0 0 0 var(--app-color, #0969da);
}

.fc-table-container th {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--bg-tertiary, #eaeaea);
}

.fc-table-container td.filename-cell {
  width: 75%;
  min-width: 500px;
}

.fc-delete-cell {
  text-align: center;
  cursor: pointer;
}

#fc-delete-input.form-control::placeholder {
  font-style: italic !important;
}

#fc-delete-input.form-control::-webkit-input-placeholder {
  font-style: italic;
}

#fc-delete-input.form-control:-ms-input-placeholder {
  font-style: italic;
}

#fc-delete-input.form-control::-ms-input-placeholder {
  font-style: italic;
}

.delete-object-body p {
  font-weight: bold;
}

.delete-object-body div {
  margin-bottom: 1px;
}

.fc-table-container th,
.fc-table-container td {
  padding: 5px 10px;
  box-sizing: border-box;
}

.filecabinet-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.totalCount {
  font-size: 25px;
}

.file-list-name-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  word-wrap: break-word;
}

.file-list-name-link:hover,
.file-list-name-link:focus,
.file-list-name-link:active {
  text-decoration: none;
}

.file-upload-input {
  margin-bottom: 10px;
}

.fc-input-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.file-search-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-icon {
  position: absolute;
  top: 17px;
  left: 10px;
  transform: translateY(-50%);
}

.fc-search-input {
  padding: 6px 12px 6px 30px;
  width: 400px;
  min-width: 200px;
  max-width: 300px;
}

label[for="fc-checkbox"] {
  background-color: var(--bg-tertiary, #efefef);
  display: flex;
  align-items: center;
  padding: 7px 12px;
  gap: 5px;
  border-radius: 4px;
  max-width: unset;
  margin-bottom: 0px;
  font-size: 1.4rem;
  min-width: 210px;
  font-weight: normal;
}

label[for="fc-checkbox"] span {
  font-size: 1.4rem;
}

#fc-checkbox {
  margin-top: 3px;
}

.folder-icon {
  width: 35px;
  height: 35px;
  margin-bottom: 3px;
}

.folder-icon-md {
  width: 25px;
  height: 25px;
  margin-bottom: 3px;
}

.folder-icon-sm {
  width: 15px;
  height: 15px;
  margin-bottom: 3px;
}

.filecabinet-file-input {
  display: none;
}

.fc-file-input {
  display: none;
}

.fc-modal-table-container {
  margin-top: 10px;
}

.fc-progress-container {
  margin-top: 10px;
  width: 100%;
}

.fc-progress {
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.fc-progress-track {
  margin-bottom: 3px;
}

.fc-input-label {
  margin-top: 10px;
}

.fc-upload-instruction {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
  gap: 5px;
  flex-wrap: wrap;
}

.upload-location {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
}

.upload-location span {
  font-weight: bold;
}

.upload-location div {
  padding: 5px 10px;
  border: 1px solid var(--border-color, #ccc);
  border-radius: 4px;
  background-color: var(--bg-secondary, #f9f9f9);
  min-width: 150px;
  width: fit-content;
  max-width: 100%;
  height: 34px;
  box-sizing: border-box;
  white-space: pre;
  overflow: auto;
}

.fc-spinner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
}

.folder-name-invalid {
  color: red;
  font-size: 1.2rem;
  margin-top: 5px;
}

.fc-modal-table {
  width: 100%;
  border-collapse: collapse;
}

.fc-modal-table th,
.fc-modal-table td {
  padding-right: 10px;
  border: 1px solid #333;
  padding: 5px;
  text-align: center;
}

.filecabinet-radio-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.fc-modal-table label {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* css related to archive page */
.archive-dt-header {
  font-size: 2.4rem;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.archive-dt-title {
  font-size: 2.4rem;
}

.archive-dt-header.sublist-header {
  padding-left: 10px;
  padding-right: 10px;
}

.archive-dataTable-header {
  margin-bottom: 10px;
}

.archive-dataTable-filters {
  margin-bottom: 10px;
}

.archive-filter-astarisk {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e54c0;
  position: absolute;
  top: -3px;
  right: -10px;
}

.archive-filter-negation {
  font-size: 1.5rem;
  font-weight: bold;
  color: #b5a214;
  position: absolute;
  top: -6px;
  right: -10px;
}

.archive-filter-astarisk.desc {
  position: static;
  margin-right: 5px;
}

.archive-filter-negation.desc {
  position: static;
  margin-right: 5px;
}

.symbol-desc {
  display: flex;
  gap: 15px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.filter-options-container {
  max-width: 300px;
}

.filter-options {
  margin-bottom: 10px;
}

.num-type-filter {
  border: none;
  padding: 5px;
}

.num-filter-container {
  display: flex;
  gap: 5px;
}

.num-operator {
  min-width: 100px;
}

.between-area {
  display: none;
}

.data-table-pills {
  display: flex;
  background-color: var(--table-header-bg);
  position: relative;
  width: 100%;
  overflow-x: auto;
  color: #333;
}

.data-table-pills .nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #333;
  padding: 8px 12px;
  border-radius: 0;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* Sublist tabs */
.sublist-pills .nav-link {
  font-size: clamp(1.15rem, 1.15rem + 0.15vw, 1.3rem);
  padding: 10px 14px;
}

@media screen and (max-width: 600px) {
  .data-table-pills .nav-item {
    width: 100%;
  }
}

.data-table-pills .nav-link span {
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.data-table-pills .nav-link.active {
  color: #013499;
  background-color: var(--sidebar-active);
  border-bottom: 2px solid #013499;
}

.data-table-pills .nav-link.active>svg {
  fill: #013499;
}

.data-table-pills .nav-link.active .sigma-path {
  stroke: #013499;
  fill: none;
}

.data-table-pills .nav-link.close-pill-link {
  display: none;
}

.archive-filter-submit-btn {
  background-color: #013499;
  color: #fff;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
  background-color: #dddddd;
  color: #013499;
  border-bottom: 2px solid #013499;
}

.filter-collapse-wrapper {
  padding: 10px;
  border: 1px solid #ccc;
  max-height: 400px;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}

/* Mobile: remove internal scrollbars, let page scroll */
@media screen and (max-width: 768px) {
  .filter-collapse-wrapper {
    max-height: none;
    overflow-y: visible;
  }
}

.filter-add-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.join-table-link-wrapper {
  padding: 10px;
  border: 1px solid #ccc;
  max-height: 400px;
  overflow-y: auto;
  box-sizing: border-box;
}

.join-table-link {
  display: flex;
  align-items: center;
  gap: 3px;
}

.special-data {
  margin-left: 5px;
}

#columns #select-multiple-container {
  max-height: 200px;
  overflow-y: auto;
}

#purge-modal .modal-body {
  max-height: 500px;
  overflow-y: auto;
}

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

.purge-list li {
  width: 100%;
  padding: 5px 0 5px 17px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.purge-list li:only-child {
  border-bottom: none;
}

.purge-caution {
  border: 3px double #a94442;
  padding: 17px;
  margin-bottom: 5px;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: #a94442;
}

.purge-checkbox {
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  transform: translateY(-50%);
}

.purge-list li label {
  margin-bottom: 0;
}

.purge-list li div {
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  max-width: 100%;
  width: 100%;
}

.purge-spinner-container,
.spinner-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.saved-search-title {
  font-size: 2.4rem;
}

.saved-search-container,
.summary-search-container {
  padding: 10px;
  border: 1px solid #ccc;
}

.saved-search-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.saved-search-dropdown {
  width: 300px;
  min-width: 200px;
}

#saved-search-edit-input {
  height: 34px;
  width: 300px;
  min-width: 200px;
}

.saved-search-btn {
  height: 34px;
}

@media screen and (max-width: 470px) {
  .saveSearch-select-container {
    width: 100%;
    min-width: unset;
  }
}

.summary-mode-checkbox-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.summary-mode-checkbox-container label {
  cursor: pointer;
}

#summary-mode-checkbox {
  margin-bottom: 1.5px;
  cursor: pointer;
}

.summary-search-body {
  display: none;
}

.add-function {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.agg-columns-select-container,
.agg-operations-select-container {
  min-width: 150px;
  width: 200px;
}

.agg-alias-input-container {
  width: 200px;
  min-width: 150px;
}

.agg-alias-input {
  height: 34px;
}

.agg-add-function-btn {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  outline: none;
  margin-top: 23px;
  border-radius: 4px;
  height: 34px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.agg-select-multiple-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agg-functions-select-container,
.agg-groupby-select-container {
  width: calc(50% - 5px)
}

textarea.sqlquery-textarea.form-control {
  width: 100%;
  height: 200px;
  box-sizing: border-box;
  color: #333;
  font-size: 13px;
  border-radius: 0px;
  box-shadow: none;
  padding: 10px;
  font-family: monospace !important;
}

.filter-collapse-container {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.archive-btn-container {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.archive-table-cell {
  min-width: 100px;
  max-width: 200px;
  white-space: wrap !important
}

.archive-table-column,
.archive-table-column-text {
  font-size: 1.2rem;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif !important;
  text-transform: uppercase;
  cursor: pointer;
}

.archive-table-view-column span {
  font-size: 1.2rem !important;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif !important;
  text-transform: uppercase;
}

.archive-table-view-cell {
  text-align: center;
  max-width: 70px;
}

/* .archive-table-cell,
.archive-table-view-cell {
  user-select: none;
}

/* only the inner text is selectable */
.archive-table-cell .archive-table-cell-text,
.archive-table-view-cell a,
.archive-table-cell-text {
  user-select: text;
}

*/ .archive-table-cell a {
  width: 100%;
}

.archive-table-cell-text {
  user-select: text;
}

.custom-tooltip {
  position: absolute;
  background-color: #333;
  transform: translate(-25%, 0);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 1000;
  text-align: center;
  max-width: 300px;
}

.custom-detail-tooltip {
  position: absolute;
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 1000;
  text-transform: none;
}

.tooltip-inner {
  display: block;
  max-width: 500px;
  text-align: left;
  text-transform: uppercase;
}

/* css related to archive detail page */
.details-pills {
  background-color: var(--table-header-bg);
}

.details-pills.data-table-pills .nav-link {
  font-size: clamp(1.15rem, 1.15rem + 0.15vw, 1.3rem);
  padding: 10px 14px;
}

.archive-details-tab-pane-wrapper {
  padding: 0px;
}

.details-tab-content {
  margin-bottom: 20px;
  border: 1px solid var(--border-color, #ccc);
  padding: 10px 0px;
}

.archive-details-box-container {
  display: flex;
  flex-wrap: wrap;
  scrollbar-color: #ececec #f9f9f9;

}

.archive-details-box-value {
  overflow-wrap: break-word;
}

.archive-details-box {
  margin-bottom: 10px;
  box-sizing: border-box;

}

.archive-details-box span:nth-child(1) {
  position: relative;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.sublist-spinner-container {
  padding: 15px 0;
  text-align: center;
}

#sublist {
  border: none;
  box-sizing: border-box;
}

/* DBVault archive sublists */
#dbvault-sublist-wrapper {
  position: relative;
  margin-top: 10px;
}

/* Sublist table container border - use box-shadow for visible side borders */
#dbvault-sublist-wrapper .table-container {
  border-left: 1px solid var(--border-color, #ccc) !important;
  border-right: 1px solid var(--border-color, #ccc) !important;
  box-sizing: border-box;
}

.dbvault-sublist-spinner {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
  justify-content: center;
  align-items: flex-start;
  padding-top: 30px;
  min-height: 100px;
}

.dbvault-sublist-spinner.loading {
  display: flex;
}

.dbvault-sublist-spinner .spinner-icon {
  width: 40px;
  height: 40px;
  filter: invert(15%) sepia(95%) saturate(5000%) hue-rotate(220deg) brightness(90%);
}

[data-bs-theme="dark"] .dbvault-sublist-spinner {
  background-color: rgba(13, 17, 23, 0.8);
}

[data-bs-theme="dark"] .dbvault-sublist-spinner .spinner-icon {
  filter: brightness(0) invert(1);
}

#dbvault-sublist {
  min-height: 50px;
}

/* Remove background from dataTable-container in sublists (record detail page) */
#dbvault-sublist .dataTable-container {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
}

[data-bs-theme="dark"] #dbvault-sublist .dataTable-container {
  border: none;
}

/* Download CSV button - light mode styling */
#dbvault-sublist .download-csv,
#dbvault-sublist .btn.download-csv {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

#dbvault-sublist .download-csv:hover,
#dbvault-sublist .btn.download-csv:hover {
  background-color: var(--bg-hover);
  border-color: var(--border-subtle);
}

#dbvault-sublist .table-container {
  border: none;
  overflow-x: auto !important;
  overflow-y: visible !important;
  max-height: none !important;
  height: auto !important;
}

/* Archive details page - container scrolls vertically */
.archive-details-container {
  height: calc(100vh - var(--navbar-height));
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px;
  box-sizing: border-box;
}

/* css related to archive settings  page */
.ar-settings-container {
  display: flex;
  justify-content: center;
}

.ar-settings-form-container {
  width: 50%;
  min-width: 250px;
}

.ar-settings-form-wrapper {
  border: 1px solid var(--border-color);
  border-bottom: none;
  background-color: var(--card-bg);
  border-radius: 4px;
  margin-bottom: 10px;
}

.ar-settings-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0px;
}

.ar-settings-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.rounding-mode-dropdown-container {
  width: auto;
  min-width: 100px;
}

.display-decimal-places-container {
  width: 100px;
}

#display-decimal-places {
  text-align: right;
  ;
}

.ar-settings-btn-container {
  text-align: right;
}

.update-tables-checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.update-tables-checkbox input[type="checkbox"] {
  cursor: pointer;
}

.update-tables-checkbox label {
  text-transform: uppercase;
  cursor: pointer;
  font-size: 1.2rem;
  color: #333;
}

/* css related to toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 21px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2.5px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #2196F3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* css related to query runner and access restriction , message page*/
.qr-header {
  margin-top: 0;
}

.qr-back-btn {
  margin: 10px 0 10px 0;
  font-size: 1.35rem;
}

.qr-select-box-container,
.cs-select-box-container {
  max-width: 400px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}

.ua-rest-select-container {
  margin: 15px 0;
}

.recordTypes_multiple_select+.select2-container .select2-selection,
.folders_multiple_select+.select2-container .select2-selection {
  min-height: 150px;
}

.ua-rest-add-container {
  display: flex;
  justify-content: flex-end;
}

.ua-rest-table-header {
  font-size: 24px;
  margin-bottom: 20px;
}

.ua-rest-pills {
  width: 100%;
  background-color: #eee;
}

.ua-rest-pills .nav-link {
  border-radius: 0px;
  color: #333;
  padding: 5px;
}

.ua-rest-pills .nav-link.active {
  background-color: #eee;
  color: #333;
}

label[for="denyFullAccess"] input[type="checkbox"] {
  vertical-align: middle;
  margin-bottom: 2px;
}

.tox-promotion,
.tox-statusbar {
  display: none !important;
}

.tox .tox-spinner {
  display: none !important;
}

.tox .tox-throbber__busy-spinner {
  background-color: rgba(238, 238, 238, 0.5) !important
}

/* create server page */
.cs-input-container {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin-bottom: 20px;
}

.cs-exec-btn {
  margin-top: 5px;
  margin-left: auto;
}

/* css related to doc page */
.kb-breadcrumb {
  margin-bottom: 20px;
}

.breadcrumb-link {
  text-decoration: none;
  color: #333333;
  font-size: 16px;
}

.current-category {
  font-size: 18px;
}

.doc {
  display: flex;
  justify-content: center;
  height: 100%;
  padding-top: 30px;
}

.doc-wrapper {
  width: 100%;
  min-width: 600px;
  height: 100%;
}

.doc-main {
  display: flex;
  margin: 0 auto;
  height: calc(100% - 56.391px - 58px);
}

.kb-sidebar {
  flex: 2;
  overflow-y: scroll;
}

.kb-sidebar-list {
  list-style: none;
  margin: 0;
  padding-left: 5px;
}

.kb-sidebar-list li a {
  text-decoration: none;
  color: #333333;
  display: block;
  padding: 10px 0 10px 5px;
}

.kb-sidebar-list li a:hover {
  background-color: #f5f5f5;
}

.kb-list-highlight {
  background-color: #f5f5f5;
}

.doc-item {
  margin-bottom: 40px;
}

.doc-contents {
  flex: 8;
  overflow-y: auto;
  padding-left: 20px;
}

@media screen and (max-width: 1800px) {
  .doc-wrapper {
    width: 100%;
    min-width: unset;
  }
}

@media screen and (max-width: 800px) {
  .doc-contents {
    padding-left: 0;
  }
}

.doc-desc {
  font-size: 18px;
  white-space: pre-wrap;
}

.sst-dropdown-container {
  margin-bottom: 10px;
}

.sst-restore-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.sst-pg-container {
  height: 46px;
}

.sst-option-list {
  list-style: none;
  padding: 5px 5px 0 0;
  margin: 0;
}

.sst-option-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.sst-option-list label {
  margin-bottom: 0;
  font-weight: normal;
}

.sst-modal-msg {
  color: #a94442;
  padding: 15px;
}

.sst-refresh-btn {
  padding: 3px 14px;
  box-sizing: border-box;
}

.no-metadata-checkbox-container {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.no-metadata-checkbox-container label {
  margin-bottom: 0;
}

.file-upload-container {
  padding: 10px 0;
}

.input-file {
  margin-bottom: 10px;
}

.cancel-upload-btn {
  display: none;
}

/* .progress{
  margin-bottom: 0px;
  position: relative;
} */
/* .progress-bar{
  background-color: #1D8102;
} */
/* .percentage{
 color:#333333
} */

/* css related to project page */
.project-detail {
  display: flex;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  padding: 10px;
  /* gap:10px; */
}

.project-detail>div {
  flex: 1 1 calc(100% / 2);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.status-container {
  margin-bottom: 10px;
}

.project-status {
  background-color: #8BC435;
  color: white;
  font-family: bold;
  border-radius: 10px;
  padding: 5px 10px;
}

/* css related to ticket message page */
.ticket-header {
  display: flex;
  align-items: center;
}

.status-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.highlighted-comment {
  background-color: #f5f5f5;
}

.first-comment {
  background-color: #f5f5f5;
  margin-bottom: 20px;
}

.comment,
.first-comment {
  border-radius: 4px;
  min-height: 200px;
  padding: 20px;
}

.comment:not(.first-comment):not(:last-child) {
  border-bottom: 1px solid #cccccc;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.ticket-body,
.ticket-footer {
  margin-bottom: 20px;
}

.comment-btn-container {
  text-align: right;
}

.ticket-err-msg {
  background-color: #F2DEDE;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #a94442;
  border-color: #ebccd1;
  display: none;
}

.numOfComments {
  margin-bottom: 20px;

}

/* css related to message page */
.msg-btn-container {
  margin-bottom: 10px;
}

.mark-read-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* css related to ticket page (test) */
.tk-status-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.tk-status {
  background-color: #8BC435;
  color: white;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  border-radius: 20px;
  padding: 3px 15px;
}

.tk-status.tk-status-closed {
  background-color: #eee;
  color: #333
}

.tk-header {
  margin-bottom: 20px;
}

.tk-body {
  display: flex;
  gap: 20px;
}

.tk-main {
  flex: 7.5;
}

.tk-sidebar {
  flex: 2.5;
}


.tk-detail {
  min-height: 200px;
  border: 1px solid #cccccc;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
}

.tk-detail-header,
.tk-message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.tk-middle {
  margin-bottom: 20px;
}

.tk-timeline {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 20px 0;
  margin-bottom: 20px;
}

.tk-message {
  display: flex;
  margin-bottom: 20px;
}

.tk-message-img-container,
.tk-detail-img-container {
  margin-right: 5px;
  flex-shrink: 0;
}

.tk-message-contents,
.tk-detail-contents {
  padding-top: 5px;
  flex-grow: 1;
  max-width: 100%;
}

.tk-sidebar-header {
  margin-bottom: 20px;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.tk-list {
  list-style: none;
  padding-left: 20px;
}

.tk-sort {
  display: flex;
  gap: 10px;
}

.tk-pills {
  list-style: none;
  display: flex;
  padding: 0;
  margin-bottom: 0px;
  border-radius: 4px;
  overflow: hidden;
}

.tk-pills li {
  background-color: #ccc;
}

.tk-pills li.active {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
  border-radius: 4px;
}

.tk-pills li.active a {
  color: var(--text-primary);
}

.tk-pills li a {
  display: block;
  padding: 3px 14px;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  text-decoration: none;
  color: #333333;
  border-radius: 4px;
}

.tk-pills li a active {
  background-color: #f5f5f5;
}

.tk-list li {
  margin-bottom: 10px;
}

.tk-notification {
  background-color: #F2DEDE;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #333333;
  border-radius: 4px;
  color: #333333;
  display: none;
}

.tk-highlight {
  background-color: #fff5cf;
}

.tk-highlight .tableCell-link .recordTitle-link {
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.action-cell {
  width: 50px;
  text-align: center;
}

.support-tk-btn-container {
  text-align: right;
}

.upload-file-btn {
  margin-bottom: 10px;
}

.attached-image-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.attachedImages-list,
.tk-attachedImages-list,
#attachedImages,
.attachedImages {
  padding: 0;
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.attachmentImages-item {
  display: flex;
  gap: 5px;
  align-items: center;
}

.remove-img-btn {
  color: #333333;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
  font-family: "BW Haas Grotesk Web 65", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.attach-img-note {
  background-color: #f9e9a8;
  padding: 2px;
  color: #212529;
}

[data-bs-theme="dark"] .attach-img-note {
  background-color: #5c4d1a;
  color: #ffeeba;
}

/* Readonly field display - used for pre-filled form fields */
.readonly-field-display {
  padding: 10px 12px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  font-size: 14px;
}

[data-bs-theme="dark"] .readonly-field-display {
  background-color: #2b3035;
  border-color: #495057;
  color: #dee2e6;
}

@media screen and (max-width: 768px) {
  .tk-main {
    flex: 1;
  }

  .tk-sidebar {
    display: none;
  }
}

.sow-item-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bs-dropdown.sow-item-actions {
  width: 95.55px;
  height: 27.6px;
}

/* Copy Button Styles - for input groups with copy functionality */
.input-group .btn-copy {
  background-color: #337ab7;
  border-color: #337ab7;
  color: #fff;
}

.input-group .btn-copy:hover {
  background-color: #286090;
  border-color: #204d74;
  color: #fff;
}

.input-group .btn-copy:active,
.input-group .btn-copy:focus {
  background-color: #204d74;
  border-color: #122b40;
  color: #fff;
  box-shadow: none;
}

/* Dark mode fix for table-bordered thead visibility */
[data-bs-theme="dark"] .table-bordered thead,
[data-bs-theme="dark"] .table-bordered thead tr,
[data-bs-theme="dark"] .table-bordered thead th {
  background-color: #343a40 !important;
  color: #dee2e6 !important;
  border-color: #495057 !important;
}

/* Dark mode button fixes - ensure colored backgrounds instead of white */
[data-bs-theme="dark"] .btn-warning {
  background-color: #ffca2c !important;
  border-color: #ffc720 !important;
  color: #000 !important;
}

[data-bs-theme="dark"] .btn-warning:hover {
  background-color: #ffcd39 !important;
  border-color: #ffc720 !important;
}

[data-bs-theme="dark"] .btn-primary {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
  color: #fff !important;
}

[data-bs-theme="dark"] .btn-secondary {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  color: #fff !important;
}

[data-bs-theme="dark"] .btn-success {
  background-color: #198754 !important;
  border-color: #198754 !important;
  color: #fff !important;
}

[data-bs-theme="dark"] .btn-danger {
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
  color: #fff !important;
}

[data-bs-theme="dark"] .btn-info {
  background-color: #0dcaf0 !important;
  border-color: #0dcaf0 !important;
  color: #000 !important;
}

[data-bs-theme="dark"] .btn-light {
  background-color: #6ea8fe !important;
  border-color: #6ea8fe !important;
  color: #000 !important;
}

[data-bs-theme="dark"] .btn-outline-secondary {
  border-color: #6c757d !important;
  color: #adb5bd !important;
}

[data-bs-theme="dark"] .btn-outline-secondary:hover {
  background-color: #6c757d !important;
  color: #fff !important;
}

/* ================================
   Dark Mode Compatible UI Components
   ================================ */

/* Panel header - light gray background in light mode, dark in dark mode */
.panel-header {
  background-color: #f8f9fa;
  padding: 15px 20px;
  border-bottom: 1px solid #dee2e6;
}

.panel-header h2 {
  margin: 0;
  font-weight: 300;
  font-size: 1.75rem;
}

[data-bs-theme="dark"] .panel-header {
  background-color: #2b3035;
  border-bottom-color: #495057;
}

[data-bs-theme="dark"] .panel-header h2 {
  color: #dee2e6;
}

/* Info box container - bordered panel for informational sections */
.info-box {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  overflow: hidden;
}

[data-bs-theme="dark"] .info-box {
  border-color: #495057;
}

/* Highlight text - yellow background inline highlight */
.highlight-text {
  background-color: #f9e9a8;
  padding: 0 2px;
  border-bottom: 1px solid #333;
  color: #212529;
}

[data-bs-theme="dark"] .highlight-text {
  background-color: #5c4d1a;
  border-bottom-color: #f9e9a8;
  color: #ffeeba;
}

/* Note highlight - yellow background block for notes/warnings */
.note-highlight {
  background-color: #f9e9a8;
  padding: 8px;
  border-radius: 4px;
  color: #212529;
}

[data-bs-theme="dark"] .note-highlight {
  background-color: #4a3d15;
  color: #ffeeba;
}

/* Info notice - blue left border informational box */
.info-notice {
  padding: 12px;
  background-color: #f8f9fa;
  border-left: 4px solid #0072c6;
  border-radius: 4px;
}

[data-bs-theme="dark"] .info-notice {
  background-color: #2b3035;
  border-left-color: #6ea8fe;
}