@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-BlackItalic.ttf') format('truetype');
	font-weight: 900;
	font-style: italic;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-BoldItalic.ttf') format('truetype');
	font-weight: 700;
	font-style: italic;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-ExtraBold.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-ExtraBoldItalic.ttf') format('truetype');
	font-weight: 800;
	font-style: italic;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-ExtraLight.ttf') format('truetype');
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-ExtraLightItalic.ttf') format('truetype');
	font-weight: 200;
	font-style: italic;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-Italic.ttf') format('truetype');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-LightItalic.ttf') format('truetype');
	font-weight: 300;
	font-style: italic;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-MediumItalic.ttf') format('truetype');
	font-weight: 500;
	font-style: italic;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-SemiBoldItalic.ttf') format('truetype');
	font-weight: 600;
	font-style: italic;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-Thin.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-ThinItalic.ttf') format('truetype');
	font-weight: 100;
	font-style: italic;
}

:root {
  --primary-color: #66b9a7;
  --primary-hover: #66b9a7;
  --sidebar-bg: #ffffff;
  --sidebar-width: 260px;
  --sidebar-hover: #e9ecef;
  --sidebar-active: #66b9a7;
  --sidebar-text: #6c757d;
  --sidebar-text-active: #ffffff;
  --content-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --header-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background-color: #fafafc;
  font-family: 'Montserrat';
}

.tooltip {
  --bs-font-sans-serif: "Montserrat";
  --bs-tooltip-font-size: 12px;
  --bs-tooltip-padding-x: 12px;
  --bs-tooltip-padding-y: 6px;
  --bs-tooltip-border-radius: 6px;
}

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

.header-shadow {
  box-shadow: var(--header-shadow);
  z-index: 1030;
}

.form-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #362e2e;
  margin-bottom: 6px;
}

.form-control {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: none;
  transition: var(--transition);
  box-shadow: 0 1px 2px 0 var(--tg-shadow-color, #0000000d);
  padding-block: 8px;
  padding-inline: 12px;
  font-size: 14px;
  line-height: 22px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 1px 2px 0 var(--tg-shadow-color, #0000000d);
}

.form-control.error {
  border-color: var(--bs-danger);
}

.form-control.error ~ .input-group-text {
  border-color: var(--bs-danger);
}

.select2-container--default .select2-selection--single {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 1px 2px 0 var(--tg-shadow-color, #0000000d);
  font-size: 14px;
  line-height: 22px;
  height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #362e2e;
  font-size: 14px;
  line-height: 38px;
  padding-right: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 38px;
  height: 38px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%0A%3Csvg id='down-arrow' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Crect id='Rectangle_17524' data-name='Rectangle 17524' width='24' height='24' fill='none'/%3E%3Cpath id='Icon_ionic-ios-arrow-down' data-name='Icon ionic-ios-arrow-down' d='M8,6.39,14.053.336a1.139,1.139,0,0,1,1.615,0,1.153,1.153,0,0,1,0,1.62L8.813,8.815a1.141,1.141,0,0,1-1.577.033L.333,1.96A1.144,1.144,0,1,1,1.948.341Z' transform='translate(4 7.001)' fill='%23555'/%3E%3C/svg%3E%0A") !important;
  background-repeat: no-repeat !important;
  background-position: center;
  background-size: 17px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-dropdown {
  border: 1px solid #ced4da;
}

.select2-container .select2-results__option {
  word-wrap: break-word;
  line-height: normal;
  font-size: 12px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #67baa6;
  color: white;
}

.form-switch-lg .form-check-input {
  width: 36px;
  height: 20px;
  border-radius: 10px;
}

.form-switch .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  padding: 10px 16px;
  transition: var(--transition);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: 0 1px 2px 0 var(--tg-shadow-color, #0000000d);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-outline-light {
  --bs-btn-color: #888888;
  --bs-btn-border-color: #d9d9d9;
  --bs-btn-hover-color: #888888;
  --bs-btn-hover-bg: #d9d9d9;
  --bs-btn-hover-border-color: #d9d9d9;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #888888;
  --bs-btn-active-bg: #d9d9d9;
  --bs-btn-active-border-color: #d9d9d9;
  --bs-btn-active-shadow: 0 1px 2px 0 var(--tg-shadow-color, #0000000d);
  --bs-btn-disabled-color: #d9d9d9;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #d9d9d9;
  --bs-gradient: none;
}

.btn-outline-light-dark {
  --bs-btn-color: #362e2e;
  --bs-btn-border-color: #d9d9d9;
  --bs-btn-hover-color: #362e2e;
  --bs-btn-hover-bg: #d9d9d9;
  --bs-btn-hover-border-color: #d9d9d9;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #362e2e;
  --bs-btn-active-bg: #d9d9d9;
  --bs-btn-active-border-color: #d9d9d9;
  --bs-btn-active-shadow: 0 1px 2px 0 var(--tg-shadow-color, #0000000d);
  --bs-btn-disabled-color: #d9d9d9;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #d9d9d9;
  --bs-gradient: none;
}

.btn-icon {
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.btn-icon.btn-sm {
  width: 30px;
  height: 30px;
  --bs-border-radius-sm: 6px;
}

.logo h4 {
  color: var(--primary-color) !important;
}

.btn-dropdown-user {
  background-color: #ffffff;
  box-shadow: 0px 4px 8px #0000001a;
  border: none;
  display: inline-flex;
  align-items: center;
  padding: 0 8px 0 10px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
}

.btn-dropdown-user span {
  display: inline-flex;
  padding: 12px 10px 12px 8px;
  margin-left: 0;
}

.btn-dropdown-user.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0;
  vertical-align: middle;
  color: #c0c4c8;
  border: none;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 336 192' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 24L168 168L312 24' stroke='%239D9D9D' stroke-width='48' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-dropdown-user .avatar {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-dropdown-user .avatar svg {
  width: 20px;
  height: 20px;
}

.badge-outline-border {
  --tg-ring-offset-shadow: inset 0 0 0 0px #fff;
  --tg-ring-shadow: inset 0 0 0 1px var(--tg-ring-color);
  box-shadow:
    var(--tg-ring-offset-shadow),
    var(--tg-ring-shadow),
    0 0 #0000;
}

.badge-outline-primary {
  --tg-ring-color: rgba(102, 185, 167, 0.2);
  background-color: rgba(102, 185, 167, 0.1);
  color: #66b9a7;
}

.badge-outline-secondary {
  --tg-ring-color: rgba(115, 108, 171, 0.2);
  background-color: rgba(115, 108, 171, 0.1);
  color: #736cab;
}

.badge-outline-danger {
  --tg-ring-color: rgb(220 38 38 / 0.1);
  background-color: #fef2f2;
  color: #b91c1c;
}

.badge-outline-warning {
  --tg-ring-color: rgb(202 138 4 / 0.2);
  color: #854d0e;
  background-color: #fefce8;
}

.badge-outline-success {
  --tg-ring-color: rgb(22 163 74 / 0.2);
  color: #15803d;
  background-color: #f0fdf4;
}

.badge-outline-blue {
  --tg-ring-color: rgb(29 78 216 / 0.1);
  color: #1d4ed8;
  background-color: #eff6ff;
}

.badge-outline-indigo {
  --tg-ring-color: rgb(67 56 202 / 0.1);
  color: #4338ca;
  background-color: #eef2ff;
}

.badge-outline-purple {
  --tg-ring-color: rgb(126 34 206 / 0.1);
  color: #7e22ce;
  background-color: #faf5ff;
}

.badge-outline-pink {
  --tg-ring-color: rgb(190 24 93 / 0.1);
  color: #be185d;
  background-color: #fdf2f8;
}

.badge-outline-orange {
  --tg-ring-color: rgb(250 104 0 / 0.1);
  color: #fa6800;
  background-color: #fff1eb;
}

.badge-outline-default {
  --tg-ring-color: rgb(0 0 0);
  background-color: #f5f5f5;
  color: #6f6f6f;
}

.toast.toast-custom {
  --bs-toast-padding-x: 10px 40px 10px 10px;
}

.toast.toast-custom .toast-body {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.toast.toast-custom .btn-close {
  position: absolute;
  right: 10px;
  width: 22px;
  height: 22px;
  background-size: 12px;
  box-shadow: none !important;
}

.toast-default {
  --bg-color: #f6f3f4;
  --border-color: #ebe6e7;
  background-color: #f6f3f4;
  border-color: #ebe6e7;
  color: #1e2939;
}

.toast-light {
  --bg-color: #fbf9fa;
  --border-color: #ebe6e7;
  background-color: #fbf9fa;
  border-color: #ebe6e7;
  color: #4a5565;
}

.toast-success {
  --bg-color: #cbfbf1;
  --border-color: #96f7e4;
  background-color: #cbfbf1;
  border-color: #96f7e4;
  color: #005f5a;
}

.toast-danger {
  --bg-color: #ffe2e2;
  --border-color: #ffc9c9;
  background-color: #ffe2e2;
  border-color: #ffc9c9;
  color: #9f0712;
}

.toast-warning {
  --bg-color: #fef9c2;
  --border-color: #fff085;
  background-color: #fef9c2;
  border-color: #fff085;
  color: #894b00;
}

.toast-info {
  --bg-color: #dbeafe;
  --border-color: #bedbff;
  background-color: #dbeafe;
  border-color: #bedbff;
  color: #193cb8;
}

.toast-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background-color: var(--border-color);
}

.toast-message {
  align-self: center;
}

.swal2-popup.swal2-modal {
  border-radius: 20px;
}

.swal2-popup {
  padding: 0px 20px 20px !important;
  width: 380px !important;
  font-size: 16px;
}

.swal2-popup.swal2-modal.swal2-icon-success.swal2-show {
  max-width: 380px;
  padding: 10px 10px 20px 10px !important;
  border-radius: 20px;
}

.swal2-popup.swal2-modal .swal2-icon {
  margin: 20px auto 0;
}

.swal2-popup.swal2-modal .swal2-title {
  color: #362e2e;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  line-height: normal;
  padding: 0;
}

.swal2-popup.swal2-modal .swal2-html-container {
  color: #797979;
  font-size: 16px;
  position: relative;
  margin: 0 !important;
  padding: 0;
  line-height: normal;
  text-align: center;
}

.swal2-popup.swal2-modal .swal2-styled {
  color: #fff;
  border: none;
  box-shadow: none;
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  padding: 10px 32px;
  margin: 16px 5px 0;
  cursor: pointer;
  border-radius: 8px;
  height: 40px;
}

.swal2-popup.swal2-modal .swal2-styled.swal2-confirm {
  background: transparent linear-gradient(276deg, #32c992 0%, #726ca7 100%) 0%
    0% no-repeat padding-box;
}

.swal2-popup.swal2-modal .swal2-styled.swal2-cancel {
  border: 1px solid #c6cdd9 !important;
  background: white !important;
  color: #333;
}

.swal2-popup.swal2-modal .swal2-styled.swal2-deny {
  background: #f25057 !important;
}

.swal2-custom-theme .swal2-popup {
  padding: 10px 10px 20px 10px !important;
}

.swal2-custom-theme .swal2-popup .swal2-title {
  font-size: 24px !important;
  line-height: normal !important;
}

.swal2-custom-theme .swal2-actions {
  margin: 0;
}

.swal2-custom-theme .swal2-popup.swal2-modal .swal2-styled {
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  border-radius: 8px;
  line-height: normal;
}

.swal2-custom-theme .swal2-popup.swal2-modal .swal2-styled.swal2-cancel {
  border: 1px solid #d5d0e3 !important;
  background: white !important;
  color: #333;
}

.footer-container {
  padding: 12px 0;
  background-color: #fafafc;
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
  color: #888888;
  margin-top: auto;
  --bs-link-color-rgb: 136, 136, 136;
}

.main-container {
  display: flex;
  min-height: calc(100vh - 64px);
  position: relative;
}

.sidebar {
  width: var(--sidebar-width);
  background-color: var(--sidebar-bg);
  min-height: 100%;
  transition: var(--transition);
}

.sidebar-logo {
  padding: 20px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar-logo a img {
  max-height: 30px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sidebar-text);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  background: none;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar-item--icon {
  background-color: #f8f8fc;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.sidebar-item:hover {
  color: var(--sidebar-text);
}

.sidebar-item.active {
  color: var(--primary-color);
}

.sidebar-item i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: -256px;
    height: 100vh;
    z-index: 1041;
    box-shadow: var(--content-shadow);
  }

  .sidebar.show {
    left: 0;
  }

  .main-content {
    width: 100%;
    padding-top: 60px;
  }

  .sidebar-nav {
    padding-top: 80px;
  }
}

@media (min-width: 768px) {
  .main-content {
    min-width: 0;
    width: calc(100% - var(--sidebar-width));
    margin-left: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
}

.header-top {
  padding: 13px 0;
  display: flex;
  align-items: center;
}

.header-title {
  font-size: 23px;
  font-weight: 600;
  color: #362e2e;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

.card-default {
  background-color: #ffffff;
  box-shadow: 0px 0px 8px #00000029;
  border-radius: 12px;
  border: none;
}

.card-default .card-title {
  font-weight: 600;
}

.settings-card .card-header {
  background: transparent;
  border-bottom: 1px solid #f1f3f5;
  padding: 1.5rem;
}

.settings-card .card-body {
  padding: 1.5rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  box-shadow: none;
}

.form-check-custom .form-check-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #362e2e;
  margin-bottom: 0;
}

.form-check-custom .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.link-primary {
  color: var(--primary-color) !important;
}

.link-primary:hover {
  color: var(--primary-hover) !important;
  text-decoration: none;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.profile-avatar-fallback {
  color: white;
  font-size: 24px;
  font-weight: 500;
}

.profile-camera-btn {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-requirements {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.requirement-item.valid i {
  color: #198754 !important;
}

.requirement-item.valid span {
  color: #198754;
}

.password-match {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.password-match.valid {
  color: #198754;
}

.password-match.invalid {
  color: #dc3545;
}

.session-item {
  background: white;
  transition: var(--transition);
}

.session-item:hover {
  background-color: #f8f9fa;
}

.session-icon {
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sidebar-text);
}

.notification-icon {
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sidebar-text);
}

.dropdown-menu {
  margin-top: 5px;
  right: 0;
  left: unset;
  min-width: 130px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  box-shadow: var(--content-shadow);
  border-radius: 8px;
  padding: 4px;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  color: #888888;
  border-radius: 6px;
  text-decoration: none !important;
  white-space: nowrap;
}

.dropdown-menu li a.disabled-action {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.dropdown-menu li a:hover {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.dropdown-menu li a svg,
.dropdown-menu li a i {
  width: 16px;
  min-width: 16px;
  height: 16px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dropdown-menu li a label {
  font-weight: 500;
  color: #888888;
  font-size: 13px;
}

.dropdown-menu li a:hover label {
  color: #262626;
}

@media (max-width: 575.98px) {
  .main-content .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .settings-card .card-header,
  .settings-card .card-body {
    padding: 1rem;
  }
}

.sidebar,
.mobile-menu-btn {
  transition: var(--transition);
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.toast {
  border: none;
  box-shadow: var(--content-shadow);
}

.modal-theme .modal-content {
  border: none;
  border-radius: 16px;
}

.modal-theme .modal-header {
  padding: 16px 24px;
  border-bottom: solid 1px #e0e0e0;
}

.modal-theme .modal-title {
  font-weight: 600;
  color: #362e2e;
  font-size: 24px;
  line-height: normal;
  max-width: calc(100% - 32px);
}

.modal-theme .btn-close {
  margin: 0 0 0 auto;
  outline: none;
}

.modal-theme .modal-body {
  --bs-modal-padding: 16px 24px;
}

.modal-theme .modal-footer {
  padding: 16px 24px;
}

.alert-success {
  background-color: #d1e7dd;
  border-color: #badbcc;
  color: #0f5132;
}

.card-divider {
  height: 12px;
  margin: 0;
  background-image: radial-gradient(
    circle,
    var(--bs-border-color) 1px,
    rgba(0, 0, 0, 0) 1px
  );
  background-size: 6px 4px;
}

.tg-separator {
  height: 2px;
  margin: 1rem auto;
  background-image: radial-gradient(
    circle,
    var(--bs-border-color) 1px,
    rgba(0, 0, 0, 0) 1px
  );
  background-size: 6px 1px;
  text-align: center;
  max-width: 90%;
}

.tg-separator span {
  display: inline-block;
  position: relative;
  top: -0.7rem;
  background-color: #fafafc;
  padding: 0 12px;
  font-size: 14px;
  color: #262626;
}

.user-token-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 1px 2px 0 var(--tg-shadow-color, #0000000d);
  overflow: hidden;
}

.user-token-card .user-token__header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e5e5e5;
  padding: 0px 16px;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  display: flex;
  align-items: center;
}

.user-token-card .user-token__body {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  color: #362e2e;
}

.input-group.input-group--iconbutton .form-control {
  border-right: none;
}

.input-group.input-group--iconbutton .form-control:focus ~ .input-group-text {
  box-shadow: none;
  border-color: var(--primary-color);
}

.input-group.input-group--iconbutton
  .form-control.error:focus
  ~ .input-group-text {
  border-color: var(--bs-danger);
}

.input-group.input-group--iconbutton .input-group-text {
  background-color: #ffffff;
  border-left: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  padding: 4px;
}

.input-group.input-group--iconbutton .input-group-text .btn {
  border-radius: 0;
  border-width: 0 0 0 1px;
  background-color: #ffffff !important;
}

.otp-inputs .form-control {
  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  padding: 0;
}

.user-authentication-card {
  padding: 20px 0;
}

.user-authentication-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-authentication-card__title .badge {
  --bs-badge-padding-x: 10px;
  --bs-badge-padding-y: 6px;
  --bs-badge-font-size: 12px;
  --bs-badge-font-weight: 600;
}

.user-authentication-key__card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 2px 0 var(--tg-shadow-color, #0000000d);
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-authentication-key__image {
  width: 140px;
  height: 140px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.user-authentication-key__text {
  width: calc(100% - 160px);
}

.user-authentication-key__text h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Auth Page Styles */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.auth-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #362e2e;
}

.auth-subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #6c757d;
}

.auth-desc {
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: #6c757d;
}

.resend-timer-text {
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: #6c757d;
  display: inline-flex;
}

.resend-timer-text span {
  color: #362e2e;
  font-weight: 600;
}

.auth-desc span {
  font-weight: 600;
  color: #362e2e;
}

.auth-form-wrapper {
  padding: 50px 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 460px;
  margin: auto;
}

.auth-form-wrapper .auth-body {
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.auth-content-col {
  padding-top: calc(var(--bs-gutter-x) * 0.5);
  padding-bottom: calc(var(--bs-gutter-x) * 0.5);
}

.auth-form .form-control.error {
  padding-right: 90px;
}

.form-control-group {
  position: relative;
}

.form-control-group .error-label {
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  background-color: #fff;
  width: 85px;
  height: 38px;
  margin: 0;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  padding: 0 10px;
}

.form-control-group .error-label .error-info-icon {
  margin-left: 4px;
  color: var(--bs-danger);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-control-group .error-label .error-info-icon::after {
  font-size: 14px;
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='11' stroke='%23DC3545' stroke-width='2'/%3E%3Cpath d='M12 8V12' stroke='%23DC3545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 16H12.01' stroke='%23DC3545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.form-control-group.otp-input-group .error-label {
  position: static;
  width: auto;
  padding: 0;
  background-color: transparent;
  justify-content: flex-start;
  margin-top: 6px;
  height: auto;
}

.form-control-toggle {
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  color: #888888;
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 8px;
}

.form-control-toggle svg,
.form-control-toggle i {
  width: 18px;
  height: 18px;
}

.form-control.error ~ .form-control-toggle {
  right: 86px;
}

.input-group-text .form-control-toggle {
  position: static;
  transform: none;
  width: 30px;
  height: 30px;
}

.auth-content {
  position: relative;
  background-color: #030305;
  /* background-image: linear-gradient( to right, #254165 0%, #402965 50%, #0391A3 100%, #ffffff 100%, #ffffff 100%); */
  height: 100%;
  border-radius: 12px;
}

.auth-content-image,
.auth-content-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  user-select: none;
  pointer-events: none;
}

.auth-content-video {
  object-position: right;
}

.auth-form-footer {
  font-size: 14px;
  color: #362e2e;
}

.auth-footer--text {
  font-size: 14px;
  color: #6c757d;
}

.form-control-group .iti__country-list {
  background-color: #fff;
  width: auto;
  min-width: 130px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  box-shadow: var(--content-shadow);
  max-width: 420px;
}

.form-control-group .iti__country-list::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

.form-control-group .iti__country-list::-webkit-scrollbar-thumb {
  --tw-border-opacity: 1;
  background: #c0c0c0;
  border-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  border-width: 1px;
}

.form-control-group .iti__country-list::-webkit-scrollbar-track {
  background-color: #f0f3f4;
  border-radius: 0px;
}

.form-control-group .iti__country-list .iti__country {
  display: flex;
  align-items: center;
}

.form-control-group .iti__country-list .iti__country-name {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #362e2e;
  max-width: calc(100% - 60px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-control-group .iti__country-list .iti__dial-code {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.form-control-group .iti__country-list .iti__country.iti__highlight {
  color: #262626;
  background-color: #f5f5f5;
}

.form-control-group .iti__country-list .iti__divider {
  border-bottom: 1px solid #e5e5e5;
}

.auth-content--inner {
  height: 100%;
  padding: 80px 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.auth-content--inner .auth-title {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 34px;
  line-height: normal;
}

.auth-content--inner .auth-subtitle {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 18px;
}

.auth-content--inner .content-wrapper {
  max-width: 750px;
  margin-inline: auto;
}

.auth-features {
  margin-bottom: 20px;
}

.auth-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

.auth-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640' fill='%2366b9a7'%3E%3Cpath d='M320 576C178.6 576 64 461.4 64 320C64 178.6 178.6 64 320 64C461.4 64 576 178.6 576 320C576 461.4 461.4 576 320 576zM438 209.7C427.3 201.9 412.3 204.3 404.5 215L285.1 379.2L233 327.1C223.6 317.7 208.4 317.7 199.1 327.1C189.8 336.5 189.7 351.7 199.1 361L271.1 433C276.1 438 282.9 440.5 289.9 440C296.9 439.5 303.3 435.9 307.4 430.2L443.3 243.2C451.1 232.5 448.7 217.5 438 209.7z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.auth-demo-text {
  color: #ffffff;
  font-size: 16px;
}

.auth-demo-text a,
.auth-demo-text a:hover {
  text-decoration: underline !important;
  font-size: 16px;
}

.auth-content--logos h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

.auth-content--logos .row {
  position: relative;
}

.auth-content--logos .row .col {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.auth-content--logos .row .col::before {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  width: 2px;
  background: radial-gradient(
    closest-side at 50% 50%,
    #fff 0,
    hsla(0, 0%, 100%, 0.2) 100%
  );
  opacity: 0.2;
}

.auth-content--logos .row .col::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: radial-gradient(
    closest-side at 50% 50%,
    #fff 0,
    hsla(0, 0%, 100%, 0.2) 100%
  );
  opacity: 0.2;
  bottom: -2px;
}

.auth-content--logos .row .col .img-wrapper {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.auth-content--logos .row .col .img-wrapper::before {
  content: "";
  position: absolute;
  left: -2px;
  height: 100%;
  width: 2px;
  background: radial-gradient(
    closest-side at 50% 50%,
    #fff 0,
    hsla(0, 0%, 100%, 0.2) 100%
  );
  opacity: 0.2;
}

.auth-content--logos .row .col .img-wrapper::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: radial-gradient(
    closest-side at 50% 50%,
    #fff 0,
    hsla(0, 0%, 100%, 0.2) 100%
  );
  opacity: 0.2;
  top: 0;
}

.otp-input-group-inner {
  gap: 10px;
  display: flex;
  justify-content: center;
}

.otp-input-group-inner .otp-input {
  flex: 1;
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
}

.card-verification-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #362e2e;
  margin-bottom: 6px;
}

.list-verification-issue {
  padding-left: 26px;
  margin-bottom: 0;
}

.list-verification-issue li {
  color: #362e2e;
  font-size: 14px;
}

.auth-carousel {
  margin-top: auto;
}

.auth-carousel-slide {
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: none;
}

.auth-carousel-slide::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -120px;
  top: -130px;
  background: #a200ff;
  opacity: 0.3;
  filter: blur(160px);
  transform: rotate(-80deg);
  border-radius: 50%;
}

.auth-carousel-slide::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -80px;
  bottom: -80px;
  background: #1a66f3;
  opacity: 0.4;
  filter: blur(160px);
  transform: rotate(-80deg);
  border-radius: 50%;
}

.auth-carousel-slide > img {
  width: auto;
  max-height: 350px;
  margin: auto -40px -40px auto;
  object-fit: contain;
  object-position: right;
  position: relative;
  z-index: 1;
}

.auth-carousel-slide--content {
  position: absolute;
  top: 50px;
  max-width: 410px;
  z-index: 3;
}

.auth-carousel .slick-dots {
  display: flex;
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  z-index: 2;
}

.auth-carousel .slick-dots li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-carousel .slick-dots li button {
  border: none;
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  padding: 0;
}

.auth-carousel .slick-dots li.slick-active button {
  background-color: #ffffff;
}

.auth-carousel-slide--content .auth-title {
  margin-bottom: 14px;
  font-size: 28px;
}

.auth-carousel-slide--content .auth-subtitle {
  color: #ffffff;
  font-size: 16px;
}

.session-overwrite-confirmation .btn {
  min-width: 100px;
}

body.has-maintenance-bar {
  padding-top: 62px;
}

.maintenance-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  overflow: hidden;
}

.maintenance-bar--maintenance {
  background: linear-gradient(135deg, #4facfe 0%, #00c6fb 100%);
}

.maintenance-bar--partial-outage {
  background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
}

.maintenance-bar--downtime {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}

.maintenance-bar--degraded-performance {
  background: linear-gradient(135deg, #f8b500 0%, #f5d073 100%);
}

.maintenance-bar__content {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 15px;
  max-width: 100%;
}

.maintenance-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.maintenance-bar__icon svg {
  width: 22px;
  height: 22px;
}

.maintenance-bar__message {
  flex: 1;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  word-wrap: break-word;
}

.maintenance-bar__message h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}

.maintenance-bar__message span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.has-maintenance-bar .sidebar-menu.fixed .sidebar-menu-inner {
  top: 62px;
}

.has-maintenance-bar .sidebar.fixed-top,
.has-maintenance-bar .sticky-top {
  top: 62px;
}

/* Edit lock: indicator on test case row when locked by someone else */
.tc-locked-indicator {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  color: #e67e22;
  cursor: help;
  vertical-align: middle;
}
.tc-locked-indicator .fa-lock {
  font-size: 12px;
  opacity: 0.9;
}
.tc-locked-indicator:hover {
  color: #d35400;
}

/* Edit lock: disable test case row action buttons when locked by another user */
.tc-row-locked .tc-action-disabled,
a.tg_btn.tc-action-disabled,
button.tg_btn.tc-action-disabled {
  pointer-events: none !important;
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}
.tc-row-locked .tc-action-disabled:hover,
a.tg_btn.tc-action-disabled:hover,
button.tg_btn.tc-action-disabled:hover {
  opacity: 0.5 !important;
}
/* Ensure locked row action cells look disabled */
#TestCaseTable tbody tr.tc-row-locked td a.tg_btn,
#TestCaseTable tbody tr.tc-row-locked td button.tg_btn {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
/* Locked row: name cell click shows lock message instead of opening editor */
#TestCaseTable tbody tr.tc-row-locked td[onclick*="checkAutoSaveTcTestcase"],
#TestCaseTable tbody tr.tc-row-locked td[data-original-onclick-name] {
  cursor: not-allowed;
}

/* Edit lock: same disabled behaviour for Test Function table (PCTable) */
#PCTable tbody tr.tc-row-locked td a.tg_btn,
#PCTable tbody tr.tc-row-locked td button.tg_btn {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

#PCTable tbody tr.tc-row-locked td[onclick*="checkAutoSaveTcTestfunction"],
#PCTable tbody tr.tc-row-locked td[data-original-onclick-name] {
  cursor: not-allowed;
}