@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-font/Outfit-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-font/Outfit-ExtraBold.ttf")
    format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-font/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-font/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-font/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-font/Outfit-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Beau Rivage";
  src: url("../assets/fonts/beau-rivage/BeauRivage-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Carattere";
  src: url("../assets/fonts/carattere/Carattere-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Engagement";
  src: url("../assets/fonts/engagement/Engagement-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Great Vibes";
  src: url("../assets/fonts/great-vibes/GreatVibes-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Playball";
  src: url("../assets/fonts/playball/Playball-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Tangerine";
  src: url("../assets/fonts/tangerine/Tangerine-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Outfit", sans-serif !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
}

.log-out {
  width: 24px !important;
  height: 24px !important;
}

.sidebar {
  width: 252px;
  padding: 15px;
  background-color: #eeeeee;
  color: white;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  overflow-y: hidden;
  overflow-x: hidden;
}

.sidebar:hover {
  overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background: #cfcfcf;
  border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}

.btn-primary {
  border: 1px solid #ffffff52;
  box-shadow: 0px 1px 2px 0px #1018280f;
  box-shadow: 0px 1px 3px 0px #1018281a;
}

/* .sidebar-closed - REMOVED: Conflicting with new sidebar collapse functionality */
/* Use .collapsed class from sidebar-collapse.css instead */

.sidebar-logo-col {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  justify-content: space-between;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.sidebar li {
  margin-bottom: 15px;
}

.sidebar .nav-link {
  min-height: 40px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #3c3c3c;
  gap: 10px;
  border-radius: 8px;
  padding: 10px;
  transition: background 0.3s;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}

.sidebar .nav-link:hover {
  background-color: #fea327;
  color: #ffffff;
}

.sidebar .nav-link:hover img,
.sidebar .nav-link.active img {
  filter: brightness(0) invert(1);
}

.sidebar .nav-link.active {
  background-color: #fea327;
  color: #ffffff;
}

.content-area {
  flex: 1;
  background-color: #f7f7f7;
  padding: 0px 20px;
  overflow: hidden;
  margin-left: 252px;
  transition: margin-left 0.3s ease;
  overflow-y: auto;
}

/* When sidebar is closed, content area margin adjusts */
/* REMOVED: .sidebar-closed rules - conflicting with new sidebar collapse functionality */
/* Use .collapsed class from sidebar-collapse.css instead */

/* Sidebar transition */
.sidebar {
  transition: transform 0.3s ease-in-out;
}

.hidden {
  display: none !important;
}

.btn_lt_trans {
  background-color: transparent;
  border: 0px !important;
  font-weight: 600;
  color: #1c1c1c;
}

.lt_icon_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  gap: 0.563rem;
  font-size: 16px;
  border-radius: 8px;
  min-height: 40px;
  line-height: 20px;
}

.upload-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drag-drop-document {
  font-family: "Outfit", sans-serif !important;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.btn_lt_trans.dropdown-toggle::after {
  display: none !important;
}

.btn_lt_trans:hover {
  color: #fea327 !important;
}

.btn_lt_trans:hover .fa-chevron-down {
  transform: translateY(1px);
}

.btn:hover {
  opacity: 0.8;
}

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

/* Navbar styling */
.lt_navbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f7f7;
}

.navbar-avatar-col,
.navbar-title-col {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.info-btn {
  background-color: transparent;
  border: none;
  padding: 0;
}

.custom-tooptip {
  display: flex;
  gap: 5px;
}

.tooltip-inner {
  max-width: 295px;
  padding: 16px;
  text-align: start;
  background-color: #ffffff;
  color: #6e6e6e;
  font-size: 14px;
  font-weight: normal;
  box-shadow: 0px 4px 6px -2px #0000000d;
  box-shadow: 0px 10px 15px -3px #0000001a;
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #fff;
}

.navbar-title-col h3 {
  font-weight: 600;
  font-size: 28px;
  color: #1c1c1c;
}

.navbar-avatar-col p {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0;
  color: #fea327;
}

.navbar-avatar-col img {
  width: 40px;
  border-radius: 50%;
  height: 40px;
  object-fit: cover;
}

.sidebar .sidebar-bottom {
  margin-top: auto;
}

/* custom toggle css start here */
.custom-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  /* Width remains 50px */
  height: 25px;
  /* Changed from 28px to 25px */
}

.custom-switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.lt-toggle .custom-switch-slider {
  background-color: #ef4444;
}

.custom-switch-input:disabled + .custom-switch-slider {
  background-color: #e0e0e0 !important;
  cursor: not-allowed;
}

.custom-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #22c55e;
  /* Green background for "off" state */
  transition: 0.4s;
  border-radius: 25px;
  /* Matches new height */
}

.custom-switch-slider:before {
  position: absolute;
  content: "";
  height: 19px;
  /* Slightly smaller circle */
  width: 19px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.popover-header {
  font-family: "Outfit", sans-serif !important;
  font-size: 14px;
}

.popover-body {
  font-family: "Outfit", sans-serif !important;
  font-size: 12px;
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover {
  background-color: #f9f9f9;
}

.checkbox {
  width: 20px;
  height: 20px;
}

/* When dropdown is shown OR hovered */
.dropdown-toggle.show img,
.dropdown-toggle:hover img {
  filter: invert(0) brightness(1000%);
}

.lt-toggle .custom-switch-input:checked + .custom-switch-slider {
  background-color: #22c55e;
  /* Red background for "on" state */
}

.custom-switch-input:checked + .custom-switch-slider {
  background-color: #ef4444;
  /* Red background for "on" state */
}

.custom-switch-input:checked + .custom-switch-slider:before {
  transform: translateX(25px);
  /* Adjusted for new width (50px - 19px - 3px*2) */
}

.custom-switch-slider .on,
.custom-switch-slider .off {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 12px;
  /* Slightly smaller text */
  font-weight: normal;
}

.custom-switch-slider .on {
  left: 7px;
  display: none;
}

.custom-switch-slider .off {
  right: 7px;
}

.custom-switch-input:checked + .custom-switch-slider .on {
  display: block;
}

.custom-switch-input:checked + .custom-switch-slider .off {
  display: none;
}

.modal-title {
  font-size: 1.438rem;
  font-weight: 600;
  color: #1c1c1c;
}

.modal-header .btn-close {
  font-size: 13px;
}

.modal-header {
  border-bottom: 0;
}

.btn {
  border-radius: 8px !important;
}

.btn-outline-golden {
  border-radius: 8px !important;
  border: 1px solid #b9c0d4 !important;
  transition: all 0.3s ease-in-out;
  border: 1px solid #f3a227 !important;
  color: #f3a227 !important;
}

.btn-outline-dark:hover {
  background-color: #f3a227 !important;
  color: #fff !important;
  font-weight: 500 !important;
}

.btn-custom {
  min-height: 32px;
  border-radius: 6px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 500 !important;
}

.btn-custom:hover {
  background-color: #f3a227 !important;
  border: 1px solid #f3a227 !important;
  color: #fff !important;
  font-weight: 500 !important;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background: url("/operator/img/svg/calander-icon.svg") no-repeat;
  width: 20px;
  height: 20px;
}

.border-bottom {
  border-bottom: 1px solid #e0e0e0;
}

.delete-modal-header,
.criteria-confirmation-header {
  min-height: 160px;
  background-image: url(/operator/img/delete-modal-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

body.loader-active {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

.alert-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 99999999 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: alertSlideIn 0.3s ease-out;
  transform: translateX(0);
}

.select2-container--default .select2-results > .select2-results__options {
  overflow-x: hidden;
  overflow-y: auto;
}

@keyframes alertSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.alert-error {
  background-color: #fee2e2;
  color: #ef4444;
  border-left: 4px solid #ef4444;
}

.alert-success {
  background-color: #ecfdf5;
  color: #10b981;
  border-left: 4px solid #10b981;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

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

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

.ck-rounded-corners
  .ck.ck-editor__top
  .ck-sticky-panel
  .ck-sticky-panel__content,
.ck.ck-editor__top
  .ck-sticky-panel
  .ck-sticky-panel__content.ck-rounded-corners {
  border: 0 !important;
  box-shadow: none !important;
}

.ck.ck-editor__main > .ck-editor__editable:not(.ck-focused) {
  border: 0 !important;
  box-shadow: none !important;
}

.ck.ck-editor__editable.ck-focused:not(.ck-editor__nested-editable) {
  border: 0 !important;
  box-shadow: none !important;
}

.ck-editor__main {
  min-height: 460px;
}

input[type="date"],
input[type="month"] {
  border: 1px solid #e0e0e0 !important;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  color: #6e6e6e;
  background-color: #f7f7f7;
  min-height: 40px;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  box-shadow: none;
  outline: none;
  padding: 8px 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="date"]:active,
input[type="date"]:focus,
input[type="month"]:active,
input[type="month"]:focus {
  border-color: #fea327;
  box-shadow: 0 0 0 3px rgba(254, 163, 39, 0.3);
  background-color: #fff;
}
.custom-checkbox .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0;
  border-color: #f2f2f2;
  border-radius: 6px;
  background-color: #f7f7f7;
}

.custom-checkbox .form-check-input:checked {
  background-color: #f3a227;
  border-color: #f3a227;
}

/* Force visual update for programmatically checked/unchecked checkboxes */
.custom-checkbox .form-check-input.force-checked {
  background-color: #f3a227 !important;
  border-color: #f3a227 !important;
  /* Add the white checkmark icon */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% 100% !important;
}

.custom-checkbox .form-check-input.force-unchecked {
  background-color: #ffffff !important;
  border-color: #dee2e6 !important;
  background-image: none !important;
}

.form-check-input[type="radio"] {
  height: 20px !important;
  width: 20px !important;
}

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

/* Ensure Select2 dropdown appears above modals with high z-index */
.select2-container--open .select2-dropdown {
  z-index: 999999 !important;
}

/* Ensure Select2 dropdown options are clickable */
.select2-container--open .select2-dropdown,
.select2-container--open .select2-results,
.select2-container--open .select2-results__options,
.select2-container--open .select2-results__option {
  pointer-events: auto !important;
}

/* Select2 orange highlight styling to match brand colors */
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #FEA327 !important;
  color: white !important;
}

.select2-container--default .select2-results__option--selected {
  background-color: rgba(254, 163, 39, 0.1) !important;
  color: #333 !important;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #FEA327 !important;
  box-shadow: 0 0 0 3px rgba(254, 163, 39, 0.3) !important;
}

.select2-container--default .select2-selection--multiple:focus,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--multiple {
  border-color: #FEA327 !important;
  box-shadow: 0 0 0 3px rgba(254, 163, 39, 0.3) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #FEA327 !important;
  outline: none !important;
}

.form-select {
  min-height: 40px;
  color: #1c1c1c;
  font-size: 14px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231C1C1C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-select:active,
.form-select:focus {
  color: #fea327;
  font-size: 14px;
  border: 1px solid #fea327;
  box-shadow: 0 0 0 3px rgba(254, 163, 39, 0.3);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FEA327' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.btn-outline-primary:hover .btn-icon {
  filter: brightness(0) invert(1);
}
.copy-url-btn{
  border : 1px solid #FEA327 !important; 
  border-radius:0px 8px 8px 0px !important; 
  background-color: #FEA327 !important;
}
.copy-url-btn .copy-url-icon{
  filter: brightness(0) invert(1);
}

.uplaod-desc {
  color: #b0b0b0 !important;
}

.pagination-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pagination-col p {
  font-size: 16px;
  font-weight: 500;
  color: #3c3c3c;
}

.pagination-col span {
  width: 40px;
  height: 40px;
  border: 1px solid #fea327;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fea327;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  font-weight: 400;
}

.no-record {
  min-height: 250px;
  background-color: #f7f7f7;
  border-radius: 12px;
}

/* .review-modal img {
  filter: blur(20px) brightness(0.5);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
} */

.pt-18 {
  font-size: 1.125rem !important;
}

.lt-input {
  background-color: #f7f7f7 !important;
  border: 1px solid #e0e0e0 !important;
  height: 40px;
  color: #6e6e6e;
  border-radius: 8px;
}

.lt-input::placeholder {
  color: #6e6e6e !important;
  font-size: 14px;
}

.lt-textarea {
  background-color: #f7f7f7;
  border: 1px solid #e0e0e0;
  color: #6e6e6e;
}

.lt-textarea::placeholder {
  color: #6e6e6e !important;
}

.form-group select {
  background-color: #f7f7f7;
  color: #6e6e6e;
}

.delete-note-btn,
.edit-note-btn,
.three-dot-btn {
  border: 0px;
  background-color: transparent;
}

.form-group label {
  font-size: 15px;
  margin-bottom: 4px;
  color: #1c1c1c;
}

.additional-question {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #5d6b98;
  font-size: 13px;
  margin-bottom: 8px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn.dropdown-toggle::after {
  display: none !important;
}

.prefix .input-group-text {
  height: 40px;
  padding: 8px 12px;
  min-width: 33px;
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  background-color: #eeeeee;
  border-color: #e0e0e0;
  border-right: 0px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.form-group:has(input[required]) > label::after,
.form-group:has(select[required]) > label::after,
.form-group:has(textarea[required]) > label::after {
  content: " *";
  color: #f04438;
}

.border-dashed {
  border-style: dashed;
}

.custom-search-select:has(input[required]) > label::after {
  content: " *";
  color: #f04438;
}

.simple-preview .uploaded-image {
  height: 106px;
}

.simple-preview .uploaded-images {
  height: 154px !important;
}

.lt-common-search {
  position: relative;
}

.lt-common-search img {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.lt-common-search input::placeholder {
  color: #b0b0b0 !important;
  opacity: 1;
  /* For Firefox */
}

.lt-common-search input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #b0b0b0 !important;
}

.lt-common-search input::-moz-placeholder {
  /* Firefox 19+ */
  color: #b0b0b0 !important;
  opacity: 1;
}

.lt-common-search input:-ms-input-placeholder {
  /* IE 10+ */
  color: #b0b0b0 !important;
}

.lt-common-search input:-moz-placeholder {
  /* Firefox 18- */
  color: #b0b0b0 !important;
  opacity: 1;
}

.new-task {
  min-width: 292px !important;
}

.unit-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  font-size: 14px;
  min-height: 22px;
  line-height: 18px;
  padding: 1px 10px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.unit-tag.success {
  border-color: #22c55e;
  background-color: #22c55e14;
  color: #22c55e;
}

.unit-tag.fail {
  border-color: #ef4444;
  background-color: #ef444414;
  color: #ef4444;
}

.unit-tag.warning {
  border-color: #f59e0b;
  background-color: #f59e0b14;
  color: #f59e0b;
}

.unit-tag.progress {
  border-color: #3b82f6;
  background-color: #3b82f614;
  color: #3b82f6;
}

.unit-tag.pending {
  border-color: #f59e0b;
  background-color: #f59e0b14;
  color: #f59e0b;
}

.unit-tag.info {
  border-color: #06b6d4;
  background-color: #06b6d414;
  color: #06b6d4;
}

.unit-tag.danger {
  border-color: #ef4444;
  background-color: #ef444414;
  color: #ef4444;
}

.unit-tag.secondary {
  border-color: #6b7280;
  background-color: #6b728014;
  color: #6b7280;
}

.input-group-append .input-group-text {
  height: 40px !important;
  padding: 8px 12px;
  min-width: 60px;
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  background-color: #eeeeee;
  border-color: #e0e0e0;
  border-left: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.input-group-prepend .input-group-text {
  height: 40px !important;
  padding: 12px 10px;
  min-width: 33px;
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  background-color: #eeeeee;
  border-color: #e0e0e0;
  border-right: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.custom-search-select {
  position: relative;
}

.custom-select {
  position: relative;
  width: 100%;
  text-align: left;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231C1C1C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.custom-search-select label {
  margin-bottom: 4px;
  display: block;
  font-size: 15px;
}

.custom-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  width: 100%;
  text-align: start;
  height: 40px;
  padding: 8px;
  font-size: 14px;
  margin-top: 6px;
  color: #6e6e6e;
  background-color: #f7f7f7;
  cursor: pointer;
}

.filter-section {
  .form-label {
    font-weight: 400 !important;
  }
}

.custom-select-col {
  display: none;
  position: absolute;
  width: 100%;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  padding: 8px;
  box-sizing: border-box;
}

.custom-search-input {
  width: 100%;
  padding: 6px 8px;
  margin-bottom: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
  /* Remove default blue outline */
}

.custom-search-input:active,
.custom-search-input:focus,
.custom-search-input:hover {
  border: 1px solid #fea327;
  outline: 2px solid #fea327;
}

.custom-options {
  margin-bottom: 8px;
}

.custom-option {
  padding: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  border-radius: 4px;
}

.custom-option.selected {
  background-color: #fea327;
  color: #fff;
}

.custom-option.selected:hover {
  background-color: #fea327;
  color: #fff;
  opacity: 0.8;
}

.custom-option:hover {
  background-color: #f0f0f0;
}

.custom-add-toggle {
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.show-add-form-btn {
  background-color: #ffffff;
  border: 1px solid #fea327;
  color: #fea327;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}

.custom-add-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.custom-add-input {
  width: 100%;
  padding: 6px 8px;
  margin-bottom: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
  /* Remove default blue outline */
}

.custom-add-input:active,
.custom-add-input:focus,
.custom-add-input:hover {
  border: 1px solid #fea327;
  outline: 2px solid #fea327;
}

.add-form-buttons {
  display: flex;
  justify-content: space-between;
}

.save-add-btn,
.cancel-add-btn {
  padding: 5px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  height: 35px;
  line-height: 100%;
}

.save-add-btn {
  background-color: #fea327;
  color: white;
}

.cancel-add-btn {
  background-color: #ffffff;
  border: 1px solid #fea327;
  color: #fea327;
}

.simple_toggle .form-switch .form-check-input {
  width: 2.9em;
  height: 1.5em;
  margin-right: 0px;
  cursor: pointer;
}

.simple_toggle .form-switch .form-check-label {
  margin-top: 2px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #6e6e6e !important;
}

.select2-container--default .select2-selection--single {
  background-color: #f7f7f7 !important;
}

/* for select2/custom select error */
.error-field {
  border: 1px solid #dc3545 !important;
  border-radius: 0.375rem;
}

.title-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}

.lt_custom_spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.properties-images-wrapper {
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.property-cover-image {
  width: 124px;
  height: 124px;
}

.lt_file_uploader {
  border: 1px solid #F2F2F2;
  background-color: #F7F7F7;
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.lt_inner_upload {
  border: 1px dashed #E0E0E0;
  border-radius: 6px;
}

.lt_inner_text {
  color: #FEA327
}

.lt_inner_upload .lt_drag_drop {
  color: #1C1C1C;
  font-size: 16px;
  line-height: 24px;
}

.lt_inner_upload .lt_file_type {
  color: #B0B0B0;
  font-size: 12px;
  line-height: 18px;
}

.lt_file_item {
  border-radius: 8px;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #CFCFCF;
  position: relative;
}

.lt_file_name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.lt_file_preview {
  overflow: hidden;
  cursor: pointer;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.lt_file_preview img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lt_cover {
  display: none;
  background-color: #FFFFFF;
  border-radius: 99px;
  font-size: 12px;
  position: absolute;
  right: 10px;
  line-height: 18px;
  top: 10px;
  padding: 1px 10px;
  color: #1C1C1C;
}

.lt_cover.active {
  display: inline-block;
}

.lt_custom_file_uploader.is-invalid+.lt_file_uploader {
  border: 1px solid #dc3545;
}

.lt_file_preview_col.scrollable {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 15px;
  -webkit-overflow-scrolling: touch;
}

.lt_file_preview_col.scrollable .lt_file_item {
  flex: 0 0 auto;
}

.lt_file_preview_col.scrollable::-webkit-scrollbar {
  height: 6px;
}

.lt_file_preview_col.scrollable::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.lt_file_preview_col.scrollable::-webkit-scrollbar-track {
  background-color: transparent;
}

.select2-init[readonly] {
  pointer-events: none;
}

.select2-init[readonly]+.select2-container {
  pointer-events: none;
  cursor: not-allowed;
}

.nav_avatar {
  width: 35px;
  height: 35px;
  background-color: #FEA327;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-weight: 600;
  border: 2px solid #FFFFFF;
}

.lt_modal_header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 168px;
  background-color: #F7F7F7;
}

.lt_modal_header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1C1C1C;
}

.tenant_history {
  border: 1px solid #E0E0E0;
  padding: 12px;
  border-radius: 8px;
}

.tenant_history p {
  font-size: 15px;
  font-weight: 500;
  color: #6E6E6E
}

.lt_outline_tags {
  border: 1px solid;
  min-height: 24px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: normal;
  cursor: pointer;
  border-radius: 99px;
  padding: 0.313rem 0.625rem;
  width: fit-content;
  gap: 10px;
}

.lt_outline_tags.yellow {
  border-color: #FEA327;
  background-color: #FFFAEB;
  color: #FEA327;
}

.lt_outline_tags.red {
  border-color: #EF4444;
  background-color: #FEF2F2;
  color: #EF4444;
}

.lt_outline_tags.blue {
  border-color: #2970FF;
  background-color: #EFF6FF;
  color: #2970FF;
}

.lt_outline_tags.green {
  border-color: #22C55E;
  background-color: #F0FDF4;
  color: #22C55E;
}

.btn_lt_outline {
  border: 1px solid;
  min-height: 24px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: normal;
  width: fit-content;
  border-radius: 8px;
  cursor: default !important;
}

.btn_lt_outline.red {
    border-color: #EF4444;
    background-color: #FEF2F2;
    color: #EF4444;
}

.btn_lt_outline .btn-text {
  padding: 0.313rem 0.625rem;
}

.btn_lt_outline .btn-icon {
  padding: 0.313rem 0.625rem;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  cursor: pointer;
}

.btn_lt_outline.red .btn-icon {
  background-color: #EF4444;
}

.btn_lt_outline.green .btn-icon {
  background-color: #22C55E;
}

.btn_lt_outline.green {
  border-color: #22C55E;
  background-color: #F0FDF4;
  color: #22C55E;
}

.hr-dashed {
  border: none;
  border-top: 1px dashed #e0e0e0;
  margin: 1.5rem 0;
}

.dropdown-header{
  padding-left: 0px;
  font-size: 22px;
}

.customFilterDropdown{
  border-radius: 10px;
}

.lt_custom__dropdown {
  max-width: 650px;
  width: 100%;
}

.lt_custom__dropdown h2 {
  color: #6E6E6E;
  font-size: 18px;
  font-weight: 500;
}

.lt_custom__dropdown p {
  font-size: 15px;
  color: #1C1C1C;
}

.custom-tooltip {
  visibility: hidden;
  width: 300px;
  background-color: white;
  color: #6e6e6e;
  text-align: left;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  top: 125%;
  left: 50%;
  margin-left: -150px;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: normal;
}

.tooltip-container:hover .custom-tooltip {
  visibility: visible;
  opacity: 1;
}

/* Custom Tooltip Styles */
.custom-tooltip-content {
  min-width: 150px;
  max-width: 200px;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 16px 12px 12px 12px;
  text-align: center;
  z-index: 1055;
  position: absolute;
  display: none;
}

/* Tooltip Arrow */
.custom-tooltip-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(0 -1px 1px #d1d1d1);
}

.custom-tooltip-text {
  font-size: 16px;
  font-weight: 400;
  color: #6E6E6E;
  line-height: 24px;
  text-align: center;
  white-space: normal;
  word-break: break-word;
}

.adv-multiselect-container  {
  width: 100%;
}

.adv-search-container input:focus {
    outline: none;         
    border-color: #ffc16b;   
    box-shadow: 0 0 5px #ffc16b;
}

.btn-danger {
  box-shadow: 0px 1px 2px 0px #1018280F;
  box-shadow: 0px 1px 3px 0px #1018281A;
}

.navbar-slider .offcanvas-header {
  border-bottom: 1px solid #F2F2F2;
}

.navbar-slider .offcanvas-title {
  color: #1C1C1C;
  font-size: 20px;
  font-weight: 400;
}

.navbar-slider .nav_avatar {
  width: 40px;
  height: 40px;
}

.navbar-slider .offcanvas-body h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 0;
}

.navbar-slider .offcanvas-body small {
  font-size: 14px;
  font-weight: 400;
  color: #6E6E6E;
  margin-bottom: 0;
}

.navbar-slider .notification-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1C1C1C;
  line-height: 20px;
  margin-bottom: 0;
}

.navbar-slider .notification-item p {
  font-size: 13px;
  font-weight: 400;
  color: #3C3C3C;
  margin-bottom: 0;
}

.navbar-slider .notification-timestamp small {
  font-size: 13px;
  font-weight: 400;
  color: #6E6E6E;
  margin-bottom: 0;
}

.navbar-slider .notification-icon svg {
  width: 18px;
  height: 18px;
}

.navbar-slider .notification-icon.bell-light svg path {
  stroke: #CFCFCF;
}

#notificationsOffcanvas .notification-card {
  transition: background-color 120ms ease-in-out;
}

#notificationsOffcanvas .notification-card:hover {
  background-color: #FFFAEB; 
}

#notificationsOffcanvas .notification-action {
  opacity: 0;
  visibility: hidden;
  transition: opacity 120ms ease-in-out, visibility 0s linear 120ms;
}
#notificationsOffcanvas .notification-card:hover .notification-action {
  opacity: 1;
  visibility: visible;
  transition: opacity 120ms ease-in-out;
}

#notificationsOffcanvas .notification-card {
  border-bottom: 1px solid #F7F7F7;
}
#notificationsOffcanvas .notification-card:last-child {
  border-bottom: none;
}

#notificationsOffcanvas .notification-icon,
#notificationsOffcanvas .notification-action {
  align-self: center;
}

/* Notification type-specific styling */
#notificationsOffcanvas .notification-card.unread {
  background-color: #F8FCFF;
}

#notificationsOffcanvas .notification-card.unread .notification-item h3 {
  font-weight: 600;
}

#notificationsOffcanvas .notification-card.read .notification-item h3,
#notificationsOffcanvas .notification-card.read .notification-item p {
  opacity: 0.7;
}

/* Notification icon container */
#notificationsOffcanvas .notification-icon {
  flex-shrink: 0;
}

/* iPhones (6,7,8,SE) and small android */
@media (max-width: 575.98px) {
  .sidebar {
    width: 220px;
  }
  .content-area {
    margin-left: 0;
  }

  .search-box {
    flex-direction: column;
    gap: 20px;
  }
  .report-col {
    flex-direction: column;
  }
  .custom-col {
    width: 100%;
  }

  .fraud-card {
    margin-top: 24px;
  }

  .fraud-detail {
    border-right: 0px !important;
  }

  .margin-sm {
    margin-right: 0px !important;
  }

  .fraud-card-lg {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .fraud-card-lg .custom-col {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .navbar-title-col h3 {
    font-size: 16px;
  }

  .navbar-avatar-col p {
    font-size: 14px;
  }
  #messages,
  #announcements {
    height: 100% !important;
    margin-bottom: 50px;
  }

  .new-message-col,
  .new-letter {
    position: relative !important;
  }

  .send-mail-tab {
    height: 100% !important;
  }

  .pagination-col {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .border-md-0 {
    border: 0px !important;
  }

  .uni-details-header {
    flex-direction: column;
  }
  .rentals-container .dropdown-menu.show {
    min-width: 360px;
  }
  .border-start-lg {
    border-left: 0px;
  }
  .new-task {
    min-width: 292px !important;
  }
  .lt_custom__dropdown {
    min-width: calc(100vw - 20px);
  }
}

/* iPhone 12, 13 Pro, small tablets */
@media (min-width: 576px) and (max-width: 767.98px) {
  .sidebar {
    width: 230px;
  }
  .rentals-container .dropdown-menu.show {
    min-width: 360px;
  }
  .content-area {
    margin-left: 0;
  }
  .report-col {
    flex-direction: column;
  }
  .custom-col {
    width: 100%;
  }
  .fraud-card {
    margin-top: 24px;
  }

  .border-md-0 {
    border: 0px !important;
  }

  .fraud-detail {
    border-right: 0px !important;
  }

  .margin-sm {
    margin-right: 0px !important;
  }

  .fraud-card-lg {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .fraud-card-lg .custom-col {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  #messages,
  #announcements {
    height: 100% !important;
    margin-bottom: 50px;
  }

  .new-message-col,
  .new-letter {
    position: relative !important;
  }

  .send-mail-tab {
    height: 100% !important;
  }

  .tennats-tag {
    font-size: 0.625rem !important;
  }

  .pagination-col {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
  }

  .uni-details-header {
    flex-direction: column;
  }
  .border-start-lg {
    border-left: 0px;
  }
  .new-task {
    min-width: 292px !important;
  }
  .lt_custom__dropdown {
    min-width: calc(100vw - 20px);
  }
}

/* iPads portrait and normal tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
  .sidebar {
    width: 240px;
  }
  .rentals-container .dropdown-menu.show {
    min-width: 360px;
  }
  .content-area {
    margin-left: 0;
  }
  .custom-dialog {
    max-width: 95% !important;
  }
  .custom-col {
    width: 100%;
  }
  .border-md-0 {
    border: 0px !important;
  }
  .custom-dropdown {
    min-width: 700px;
  }
  .tennats-tag {
    font-size: 0.625rem !important;
  }
  .uni-details-header {
    flex-direction: column;
  }
  .border-start-lg {
    border-left: 1px solid #f2f2f2;
  }
  .new-task {
    min-width: 292px !important;
  }
  .lt_custom__dropdown {
     min-width: 650px;
  }
}

/* iPad Pro Landscape and medium desktops */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sidebar {
    width: 252px;
  }
  .content-area {
    margin-left: 252px;
  }
  .rentals-container .dropdown-menu.show {
    min-width: 760px;
  }
  .lease.dropdown-menu.show {
    min-width: 650px !important;
  }
  .new-task {
    min-width: 292px !important;
  }
  .border-start-lg {
    border-left: 1px solid #f2f2f2;
  }
  .lt_custom__dropdown {
     min-width: 650px;
  }
}

/* Large desktops, 4K screens */
@media (min-width: 1200px) {
  .sidebar {
    width: 252px;
  }
  .content-area {
    margin-left: 252px;
  }
  .custom-dropdown {
    min-width: 700px;
  }
  .rentals-container .dropdown-menu.show {
    min-width: 760px;
  }
  .lease.dropdown-menu.show {
    min-width: 750px !important;
  }
  .new-task {
    min-width: 292px !important;
  }
  .border-start-lg {
    border-left: 1px solid #f2f2f2;
  }
  .lt_custom__dropdown {
    min-width: 685px;
  }
}
/* Edit Transaction Modal - Ensure all fields are editable */
#editTransactionModal .modal-content {
  pointer-events: auto !important;
}

#editTransactionModal .modal-body input,
#editTransactionModal .modal-body textarea,
#editTransactionModal .modal-body select {
  pointer-events: auto !important;
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
}

#editTransactionModal .lt-input,
#editTransactionModal .lt-textarea,
#editTransactionModal .lt-num {
  background-color: #fff !important;
  cursor: text !important;
}

#editTransactionModal .modal-dialog {
  pointer-events: auto !important;
}
/* AGGRESSIVE FIX - Edit Transaction Modal */
#editTransactionModal {
  z-index: 9999 !important;
}

#editTransactionModal .modal-dialog {
  pointer-events: auto !important;
  z-index: 10000 !important;
}

#editTransactionModal .modal-content {
  pointer-events: auto !important;
  position: relative;
  z-index: 10001 !important;
}

#editTransactionModal .modal-body {
  pointer-events: auto !important;
}

/* Force all inputs to be editable */
#editTransactionModal input[type="text"],
#editTransactionModal input[type="date"],
#editTransactionModal input[type="number"],
#editTransactionModal textarea,
#editTransactionModal select {
  pointer-events: auto !important;
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  cursor: text !important;
  background-color: #ffffff !important;
  opacity: 1 !important;
}

#editTransactionModal input:disabled,
#editTransactionModal textarea:disabled,
#editTransactionModal select:disabled {
  pointer-events: none !important;
  background-color: #e9ecef !important;
  cursor: not-allowed !important;
}

/* Make sure readonly attribute doesn't exist */
#editTransactionModal input:not([readonly]):not([disabled]),
#editTransactionModal textarea:not([readonly]):not([disabled]) {
  background-color: #ffffff !important;
}

/* Custom input classes */
#editTransactionModal .lt-input,
#editTransactionModal .lt-textarea,
#editTransactionModal .lt-num {
  background-color: #ffffff !important;
  cursor: text !important;
  pointer-events: auto !important;
}

/* Ensure input-group elements don't block */
#editTransactionModal .input-group {
  pointer-events: auto !important;
}

#editTransactionModal .input-group input {
  pointer-events: auto !important;
}

/* Custom search select */
#editTransactionModal .custom-search-select {
  pointer-events: auto !important;
}

#editTransactionModal .custom-search-select button,
#editTransactionModal .custom-search-select input {
  pointer-events: auto !important;
  cursor: pointer !important;
}

#editTransactionModal .custom-search-select input[type="text"] {
  cursor: text !important;
}

/* Remove Bootstrap's default pointer-events: none on modal-dialog */
.modal.show .modal-dialog {
  pointer-events: auto !important;
}

/* Ensure edit modal inputs are ALWAYS clickable */
#editTransactionModal.show .modal-dialog {
  pointer-events: auto !important;
}

#editTransactionModal.show .modal-content {
  pointer-events: auto !important;
}

#editTransactionModal.show .modal-body {
  pointer-events: auto !important;
}

#editTransactionModal.show input,
#editTransactionModal.show textarea,
#editTransactionModal.show select,
#editTransactionModal.show button {
  pointer-events: auto !important;
}

/* Prevent any overlays from blocking inputs */
#editTransactionModal * {
  pointer-events: auto !important;
}

/* Except for the backdrop */
/* Read-only owner banner */
.readonly-owner-banner {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #FEA327;
  border-radius: 8px;
  padding: 12px 18px;
  margin: 16px 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  color: #3C3C3C;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.readonly-owner-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FEA327;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.readonly-owner-badge i {
  color: #fff;
  font-size: 12px;
}

/* Disable write actions for read-only owners */
body.readonly-owner .btn-primary:not(.readonly-allowed),
body.readonly-owner .btn-danger:not(.readonly-allowed),
body.readonly-owner .lt_icon_btn:not(.readonly-allowed),
body.readonly-owner [data-action="delete"]:not(.readonly-allowed),
body.readonly-owner .delete-btn:not(.readonly-allowed) {
  opacity: 0.5;
  pointer-events: none;
}

.modal-backdrop {
  pointer-events: auto !important;
}

.modal-backdrop.show {
  opacity: 0.5 !important;
  background-color: #000 !important;
}

/* Ensure full-width modals show backdrop via pseudo-element fallback */
#propertyOwnerModal.show::before,
#propertyModal.show::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Communication Notification Badge */
#communication-notification-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar .nav-link {
  display: flex;
  align-items: center;
  position: relative;
}

.sidebar .nav-link .badge {
  margin-left: auto;
}
