:root {
  --vf-font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --vf-font-size-10: 10px;
  --vf-font-size-11: 11px;
  --vf-font-size-12: 12px;
  --vf-font-size-13: 13px;
  --vf-font-size-14: 14px;
  --vf-font-size-16: 16px;
  --vf-font-size-18: 18px;
  --vf-font-size-20: 20px;
  --vf-font-size-22: 22px;
  --vf-font-size-24: 24px;
  --vf-font-size-28: 28px;
  --vf-font-size-32: 32px;
  --vf-font-size-36: 36px;
  --vf-font-weight-regular: 400;
  --vf-font-weight-medium: 500;
  --vf-font-weight-semibold: 600;
  --vf-font-weight-bold: 700;
  --vf-font-weight-extrabold: 800;
  --vf-line-height-tight: 20px;
  --vf-line-height-sm: 24px;
  --vf-line-height-md: 28px;
  --vf-line-height-lg: 32px;
  --vf-line-height-xl: 48px;
  --vf-static-white: #fff;
  --vf-white-500: #fff;
  --vf-black-500: #000;
  --vf-blue-050: #f3f6fd;
  --vf-blue-500: #0a369d;
  --vf-blue-50: #e7ebf5;
  --vf-blue-100: #b3c1e1;
  --vf-blue-surface: #e5edfa;
  --vf-panel-blue: #e3e9f9;
  --vf-green-500: #198754;
  --vf-green-600: #177b4c;
  --vf-green-400: #479f76;
  --vf-green-300: #65af8c;
  --vf-green-200: #95c8b0;
  --vf-green-surface: #e8f5ef;
  --vf-red-500: #dc3545;
  --vf-red-600: #c8303f;
  --vf-red-800: #791d26;
  --vf-red-50: #fcebec;
  --vf-orange-500: #f2994a;
  --vf-orange-surface: #fff3e8;
  --vf-gray-900: #212529;
  --vf-gray-700: #4d5154;
  --vf-gray-600: #6a6d70;
  --vf-gray-500: #999b9d;
  --vf-gray-300: #b0b1b2;
  --vf-gray-200: #e2e3e4;
  --vf-gray-100: #f8f9fa;
  --vf-gray-050: #f5f6f8;
  --vf-border: #e9e9ea;
  --vf-foundation-gray-500: #e9ecef;
  --vf-page: #f4f6fb;
  --vf-radius: 10px;
}

/* Notifications page */
.vf-notifications-page {
  color: var(--vf-gray-900);
}

.vf-notification-alerts,
.vf-notification-rules-card {
  overflow: hidden;
}

.vf-notification-alerts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vf-notification-alerts-header p {
  margin: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-notification-alerts-header strong {
  font-weight: var(--vf-font-weight-semibold);
}

.vf-notification-alert-list {
  padding: 0 24px;
}

.vf-notification-alert-row {
  display: grid;
  min-height: 84px;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin: 0;
  border-bottom: 1px solid var(--vf-border);
}

.vf-notification-alert-row:last-child {
  border-bottom: 0;
}

.vf-notification-alert-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-24);
}

.vf-notification-alert-copy h3 {
  margin-bottom: 4px;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-notification-alert-copy p {
  margin-bottom: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-notification-alert-row .vf-switch,
.vf-notification-actions .vf-switch {
  margin: 0;
  padding-left: 0;
  min-height: auto;
}

.vf-notification-rules-toolbar {
  min-height: 70px;
}

.vf-notification-rules-toolbar p {
  margin: 2px 0 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-notification-add-btn {
  min-height: 36px;
  padding: 7px 13px;
  gap: 8px;
  font-size: var(--vf-font-size-12);
}

.vf-notification-rule-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.vf-notification-rule-name strong,
.vf-notification-frequency {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-notification-rule-name small {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-11);
  line-height: 16px;
}

.vf-notification-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.vf-notification-action {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: var(--vf-blue-500);
  background: transparent;
  font-size: var(--vf-font-size-22);
}

.vf-notification-action:hover,
.vf-notification-action:focus-visible {
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
}

.vf-notification-action.is-danger,
.vf-notification-action.is-danger:hover,
.vf-notification-action.is-danger:focus-visible {
  color: var(--vf-red-500);
}

html[data-theme="dark"] .vf-notification-alert-icon,
html[data-theme="dark"] .vf-notification-action {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-notification-action.is-danger {
  color: #ff6675;
}

@media (max-width: 767.98px) {
  .vf-notification-alerts-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .vf-notification-alert-list {
    padding-inline: 16px;
  }

  .vf-notification-alert-row {
    min-height: 104px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .vf-notification-alert-icon {
    width: 42px;
    height: 42px;
  }

  .vf-notification-rules-toolbar {
    align-items: stretch;
  }

  .vf-notification-add-btn {
    width: 100%;
  }
}

html[data-theme="dark"] {
  --vf-white-500: #171d25;
  --vf-black-500: #f8fafc;
  --vf-blue-050: #1e2a42;
  --vf-blue-50: #1e2a42;
  --vf-blue-100: #6f8fd0;
  --vf-blue-surface: #1f2e4d;
  --vf-panel-blue: #202a3a;
  --vf-green-surface: #17362a;
  --vf-red-50: #3a1f25;
  --vf-orange-surface: #3b2c1d;
  --vf-gray-900: #f5f7fb;
  --vf-gray-700: #c8d0da;
  --vf-gray-600: #a9b3bf;
  --vf-gray-500: #858f9c;
  --vf-gray-300: #596474;
  --vf-gray-200: #384250;
  --vf-gray-100: #202833;
  --vf-gray-050: #1d2530;
  --vf-border: #303947;
  --vf-foundation-gray-500: #303947;
  --bs-btn-bg: #c8d0da;
  --vf-page: #0f141b;
}

body {
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-regular);
  line-height: var(--vf-line-height-tight);
  letter-spacing: 0;
  color: var(--vf-gray-900);
  background: var(--vf-page);
}

pre {
  font-family: var(--vf-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 12px;
  font-weight: var(--vf-font-weight-bold);
  color: var(--vf-black-500);
}

h1 {
  font-size: var(--vf-font-size-36);
  line-height: var(--vf-line-height-xl);
}

h2 {
  font-size: var(--vf-font-size-24);
  line-height: var(--vf-line-height-lg);
}

h3 {
  font-size: var(--vf-font-size-22);
  line-height: var(--vf-line-height-md);
}

h4 {
  font-size: var(--vf-font-size-20);
  line-height: var(--vf-line-height-sm);
}

h5 {
  font-size: var(--vf-font-size-18);
  line-height: var(--vf-line-height-sm);
}

h6 {
  font-size: var(--vf-font-size-16);
  line-height: var(--vf-line-height-tight);
}

ul {
  padding-left: 0px;
  list-style-type: none;
  margin-bottom: 0;
}

* a {
  color: var(--theme-deafult);
  text-decoration: none;
}

a {
  text-decoration: none;
  color: var(--theme-deafult);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
a.link {
  text-decoration: underline;
}
a:hover {
  color: var(--theme-deafult);
  -webkit-transition: all 0.5s all;
  transition: all 0.5s all;
}
a:focus-visible {
  outline: none;
}

.btn {
  font-weight: 500;
}

.filled {
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.material-symbols-outlined {
  font-family: "Material Symbols Rounded";
  vertical-align: middle;
}

*.btn:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

p {
  font-size: 14px;
}

p.content {
  font-size: 1rem;
}

iconify-icon {
  vertical-align: middle;
}

.form-label {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

textarea {
  resize: none;
}

span {
  display: inline-block;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.d-flex .flex-grow-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

:focus {
  outline-color: var(--theme-deafult);
}

svg {
  vertical-align: baseline;
}

input:focus {
  outline-color: transparent;
}

.form-inline .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ===== Scrollbar CSS ===== */

::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #d4d7d9;
  border-radius: 10px;
}

p {
  margin-bottom: 12px;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

a {
  color: inherit;
}

.page-title {
  margin-bottom: 4px;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-22);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-lg);
}

.page-subtitle {
  margin-bottom: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: 21px;
}

.dashboard-shell {
  min-height: 100vh;
}

.text-secondary {
  color: var(--vf-gray-700) !important;
}

.fs-10 {
  font-size: var(--vf-font-size-10) !important;
}

.fs-11 {
  font-size: var(--vf-font-size-11) !important;
}

.fs-12 {
  font-size: var(--vf-font-size-12) !important;
}

.fs-13 {
  font-size: var(--vf-font-size-13) !important;
}

.fs-14 {
  font-size: var(--vf-font-size-14) !important;
}

.fs-16 {
  font-size: var(--vf-font-size-16) !important;
}

.fs-18 {
  font-size: var(--vf-font-size-18) !important;
}

.fs-20 {
  font-size: var(--vf-font-size-20) !important;
}

.fs-22 {
  font-size: var(--vf-font-size-22) !important;
}

.fs-24 {
  font-size: var(--vf-font-size-24) !important;
}

.fs-28 {
  font-size: var(--vf-font-size-28) !important;
}

.fs-32 {
  font-size: var(--vf-font-size-32) !important;
}

.fs-36 {
  font-size: var(--vf-font-size-36) !important;
}

.fw-400 {
  font-weight: var(--vf-font-weight-regular) !important;
}

.fw-500 {
  font-weight: var(--vf-font-weight-medium) !important;
}

.fw-600 {
  font-weight: var(--vf-font-weight-semibold) !important;
}

.fw-700 {
  font-weight: var(--vf-font-weight-bold) !important;
}

.lh-20 {
  line-height: var(--vf-line-height-tight) !important;
}

.lh-24 {
  line-height: var(--vf-line-height-sm) !important;
}

.lh-28 {
  line-height: var(--vf-line-height-md) !important;
}

.lh-32 {
  line-height: var(--vf-line-height-lg) !important;
}

.lh-48 {
  line-height: var(--vf-line-height-xl) !important;
}

.vf-card {
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius);
  background: var(--vf-white-500);
  width: 100%;
}

.vf-card-header {
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px 8px 0 0;
  background: var(--vf-panel-blue);
}

.vf-card-title {
  margin-bottom: 0;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-18);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-sm);
}

.vf-card-body {
  padding: 16px 24px;
}

.vf-category-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vf-category-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vf-category-meta {
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-category-progress {
  display: flex;
  height: 18px;
  align-items: center;
}

.vf-category-progress .progress {
  width: 100%;
}

.vf-stat-card {
  min-height: 131px;
  padding: 16px 12px;
}

.vf-stat-label {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  text-transform: uppercase;
}

.vf-stat-value {
  font-size: var(--vf-font-size-24);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-caption {
  color: var(--vf-gray-600);
  font-size: var(--vf-font-size-12);
  text-transform: uppercase;
}

.vf-muted {
  color: var(--vf-gray-500);
}

.vf-text-muted {
  color: var(--vf-gray-700);
}

.vf-primary {
  color: var(--vf-blue-500) !important;
}

.vf-warning {
  color: var(--vf-orange-500) !important;
}

.vf-red {
  color: var(--vf-red-500) !important;
}

.vf-link {
  color: var(--vf-blue-500);
  text-decoration: none;
}

.vf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  margin: 0;
}

.vf-btn .material-symbols-outlined {
  font-size: var(--vf-font-size-20);
}

.vf-btn-primary,
.btn-primary {
  --bs-btn-color: var(--vf-static-white);
  --bs-btn-bg: var(--vf-blue-500);
  --bs-btn-border-color: var(--vf-blue-500);
  --bs-btn-hover-color: var(--vf-static-white);
  --bs-btn-hover-bg: #082f88;
  --bs-btn-hover-border-color: #082f88;
}

.vf-theme-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--vf-blue-050);
  font-size: var(--vf-font-size-22);
  line-height: var(--vf-line-height-tight);
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.vf-theme-toggle:hover,
.vf-theme-toggle:focus-visible {
  border-color: var(--vf-blue-100);
  color: var(--vf-blue-500);
  outline: 0;
}

html[data-theme="dark"] .vf-theme-toggle-track {
  background: var(--vf-blue-500);
}

html[data-theme="dark"] .vf-theme-toggle-track::after {
  transform: translateX(16px);
  background: #fff;
}

html[data-theme="dark"] .form-select,
html[data-theme="dark"] .form-control,
html[data-theme="dark"] .vf-table-rows-control {
  border-color: var(--vf-border);
  color: var(--vf-gray-900);
  background-color: var(--vf-white-500);
}

html[data-theme="dark"] .form-select option {
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
}

html[data-theme="dark"] .vf-link,
html[data-theme="dark"] .text-primary,
html[data-theme="dark"] .toggle-sidebar,
html[data-theme="dark"] .vf-primary,
html[data-theme="dark"] .vf-device-details-back,
html[data-theme="dark"] .vf-devices-rename-trigger,
html[data-theme="dark"] .vf-devices-actions button:not(.danger),
html[data-theme="dark"]
  .page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-link.active
  span,
html[data-theme="dark"] .vf-device-score-value strong,
html[data-theme="dark"]
  .page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  li
  a.active {
  color: var(--vf-blue-100) !important;
}

html[data-theme="dark"]
  .page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu::before {
  background-color: var(--vf-blue-100);
}

html[data-theme="dark"] .text-dark {
  color: var(--vf-gray-900) !important;
}

html[data-theme="dark"] .vf-overview-filter-bar,
html[data-theme="dark"] .vf-code,
html[data-theme="dark"] .vf-score-pill {
  background: #101722;
}

html[data-theme="dark"] .vf-code code {
  color: var(--vf-static-white) !important;
}

html[data-theme="dark"] .vf-devices-total-badge {
  color: var(--vf-gray-900);
  background: var(--vf-gray-100);
}

html[data-theme="dark"] .vf-device-details-profile {
  color: var(--vf-blue-100);
  background: rgba(111, 143, 208, 0.2);
}

html[data-theme="dark"] .vf-device-details-pause-btn {
  border-color: var(--vf-blue-100);
  color: var(--vf-blue-100);
  background: rgba(111, 143, 208, 0.12);
}

.vf-select {
  padding: 8px 34px 8px 14px;
  border: 1px solid var(--vf-border);
  border-radius: 8px;
  color: var(--vf-gray-900);
  background-color: var(--vf-white-500);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  box-shadow: none;
}

.vf-select:focus {
  border-color: var(--vf-blue-500);
  box-shadow: 0 0 0 3px rgba(10, 54, 157, 0.12);
}

.vf-select-wrap {
  position: relative;
  display: inline-flex;
  min-width: 168px;
  min-height: 42px;
}

.vf-select-wrap .vf-select {
  width: 100%;
}

.vf-select-wrap-icon > span.material-symbols-outlined {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 2;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-18);
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.vf-select-wrap-icon .vf-select {
  padding-left: 38px;
}

.vf-select-dark {
  min-height: 36px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  color: var(--vf-static-white);
  background-color: #6f7477;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.vf-select-dark:focus {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.vf-select-dark option {
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
}

.progress {
  --bs-progress-height: 8px;
  --bs-progress-bg: var(--vf-gray-200);
  border-radius: 8px;
}

.progress-bar {
  border-radius: 8px 0px 0px 8px;
}

.vf-progress-sm {
  --bs-progress-height: 6px;
}

.vf-segment {
  height: 6px;
  border-radius: 8px;
}

.vf-row-divider + .vf-row-divider {
  border-top: 1px solid var(--vf-border);
}

.vf-attention-copy {
  min-width: 0;
  line-height: var(--vf-line-height-tight);
  white-space: nowrap;
}

.vf-status-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.vf-pill-danger {
  color: #fff;
  background: var(--vf-red-500);
}

.vf-issue-badge {
  display: inline-flex;
  height: 20px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 16px;
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-score-pill {
  min-width: 30px;
  padding: 1px 4px;
  border-radius: 2px;
  font-size: var(--vf-font-size-12);
  text-align: center;
  background: var(--vf-gray-100);
}

.vf-code {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #fff;
  background: var(--vf-gray-900);
  border-radius: 8px;
}

.vf-code code {
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-mini-panel {
  min-height: 120px;
  padding: 12px 16px;
  background: var(--vf-gray-100);
  border-radius: 8px;
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-analytics-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vf-analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vf-deployment-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vf-deployment-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vf-copy-btn {
  width: 28px;
  height: 28px;
  padding: 4px;
  border: 0;
  border-radius: 2px;
  line-height: 20px;
  color: var(--vf-blue-100);
}

.vf-bar {
  width: 20%;
  border-radius: 3px 3px 0 0;
}

.bg-vf-white {
  background-color: var(--vf-white-500) !important;
}
.bg-vf-black {
  background-color: var(--vf-black-500) !important;
}
.bg-vf-blue-50 {
  background-color: var(--vf-blue-50) !important;
}
.bg-vf-blue-100 {
  background-color: var(--vf-blue-100) !important;
}
.bg-vf-blue-surface {
  background-color: var(--vf-blue-surface) !important;
}
.bg-vf-blue-500 {
  background-color: var(--vf-blue-500) !important;
}
.bg-vf-panel-blue {
  background-color: var(--vf-panel-blue) !important;
}
.bg-vf-green-surface {
  background-color: var(--vf-green-surface) !important;
}
.bg-vf-green-200 {
  background-color: var(--vf-green-200) !important;
}
.bg-vf-green-300 {
  background-color: var(--vf-green-300) !important;
}
.bg-vf-green-400 {
  background-color: var(--vf-green-400) !important;
}
.bg-vf-green-500 {
  background-color: var(--vf-green-500) !important;
}
.bg-vf-green-600 {
  background-color: var(--vf-green-600) !important;
}
.bg-vf-red-50 {
  background-color: var(--vf-red-50) !important;
}
.bg-vf-red-500 {
  background-color: var(--vf-red-500) !important;
}
.bg-vf-red-600 {
  background-color: var(--vf-red-600) !important;
}
.bg-vf-red-800 {
  background-color: var(--vf-red-800) !important;
}
.bg-vf-orange-500 {
  background-color: var(--vf-orange-500) !important;
}
.bg-vf-orange-surface {
  background-color: var(--vf-orange-surface) !important;
}
.bg-vf-gray-050 {
  background-color: var(--vf-gray-050) !important;
}
.bg-vf-gray-100 {
  background-color: var(--vf-gray-100) !important;
}
.bg-vf-gray-200 {
  background-color: var(--vf-gray-200) !important;
}
.bg-vf-gray-300 {
  background-color: var(--vf-gray-300) !important;
}
.bg-vf-gray-500 {
  background-color: var(--vf-gray-500) !important;
}
.bg-vf-gray-600 {
  background-color: var(--vf-gray-600) !important;
}
.bg-vf-gray-700 {
  background-color: var(--vf-gray-700) !important;
}
.bg-vf-gray-900 {
  background-color: var(--vf-gray-900) !important;
}
.bg-vf-border {
  background-color: var(--vf-border) !important;
}
.bg-vf-foundation-gray {
  background-color: var(--vf-foundation-gray-500) !important;
}
.bg-vf-page {
  background-color: var(--vf-page) !important;
}

@media (max-width: 575.98px) {
  body {
    font-size: 13px;
  }

  .dashboard-shell {
    padding-top: 58px !important;
    padding-inline: 8px;
  }

  .vf-theme-toggle {
    top: 10px;
    right: 10px;
  }

  .vf-card-header,
  .vf-card-body {
    padding-inline: 16px;
  }

  .vf-stat-card {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .vf-analytics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 13px;
  }

  .dashboard-shell {
    padding-inline: 8px;
  }

  .vf-card-header,
  .vf-card-body {
    padding-inline: 16px;
  }

  .vf-stat-card {
    min-height: auto;
  }
}

/**=====================
    Scrollbar CSS Start
==========================**/
[data-simplebar] {
  position: unset;
}

.simplebar-mask {
  top: 70px;
}

.simplebar-track {
  right: -2px;
}
.simplebar-track.simplebar-vertical {
  top: 100px;
  width: 10px;
}
.simplebar-track.simplebar-horizontal {
  visibility: hidden !important;
}

.simplebar-scrollbar:before {
  background: rgba(122, 112, 186, 0.2);
}

/**=====================
    Scrollbar CSS Ends
==========================**/

/**=====================
	Dropdown CSS Start
==========================**/

.dropdown .dropdown-toggle {
  text-align: center;
}
.dropdown .dropdown-toggle:after {
  position: absolute;
  top: auto;
  bottom: auto;
  right: 10px;
  vertical-align: middle;
  content: url("https://api.iconify.design/prime:angle-down.svg?height=24&color=%23ffffff");
  border: none;
  margin: 0;
}
/* .dropdown-item {
  width: auto !important;
} */

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: 4px;
  content: "";
  border-top: 4px dashed;
  border-right: 4px dashed transparent;
  border-bottom: 0;
  border-left: 4px dashed transparent;
}

/**=====================
	Dropdown CSS Ends
==========================**/
/**=====================
    Loader CSS Start
==========================**/
.loader-wrapper {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  background-color: #fff;
  z-index: 11;
  top: 0;
}
.loader-wrapper .loader {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 75px;
  display: inline-block;
  vertical-align: middle;
}
.loader-wrapper .loader-1 .loader-outter {
  position: absolute;
  border: 4px solid var(--vf-black-500);
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-1-outter 1.5s cubic-bezier(0.42, 0.61, 0.58, 0.41)
    infinite;
  animation: loader-1-outter 1.5s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}
.loader-wrapper .loader-1 .loader-inner {
  position: absolute;
  border: 4px solid var(--vf-blue-500);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-1-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41)
    infinite;
  animation: loader-1-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}
.loader-wrapper .loader-1 .loader-inner-1 {
  background: url("../images/logo-icon.svg") no-repeat;
  position: absolute;
  width: 32px;
  height: 32px;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
}

@-webkit-keyframes loader-1-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes loader-1-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes loader-1-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-1-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/**=====================
    Loader CSS Ends
==========================**/
@media print {
  .sidebar-wrapper,
  .page-header {
    display: none;
  }
  .page-body {
    margin: 0 !important;
  }
  .page-wrapper .page-title {
    visibility: hidden;
  }
  .page-wrapper.compact-wrapper .page-body-wrapper .page-body {
    margin: 0;
  }
}

.nav-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--vf-gray-600) !important;
}

::-moz-placeholder {
  font-size: 14px;
  color: var(--vf-gray-600) !important;
}

:-ms-input-placeholder {
  font-size: 14px;
  color: var(--vf-gray-600) !important;
}

::-ms-input-placeholder {
  font-size: 14px;
  color: var(--vf-gray-600) !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

.dropdown-menu {
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  border: none;
  padding: 0;
  z-index: 9;
}
.dropdown-menu .dropdown-item {
  color: var(--vf-gray-700);
  font-size: 13px;
  padding: 6px 12px;
  border-top: 1px solid #e9ecef;
  background: #fff;
}
.dropdown-menu .dropdown-item:first-child {
  border-radius: 5px 5px 0 0;
}
.dropdown-menu .dropdown-item:last-child {
  border-radius: 0 0 5px 5px;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #f0f2f4;
}

input:focus {
  outline: none;
}

/*======= Page Header css ends  ======= */
/**======Main Header css Start ======**/

.toggle-sidebar {
  position: absolute;
  right: -18px;
  top: 18px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  cursor: pointer;
  font-size: 30px;
  color: var(--vf-blue-500);
  text-align: center;
  background-color: var(--vf-blue-50);
  border-radius: 100%;
}
.toggle-sidebar .material-symbols-outlined {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  vertical-align: unset;
  font-size: 22px;
}
.toggle-sidebar:hover > .material-symbols-outlined {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.onhover-dropdown {
  position: relative;
  cursor: pointer;
}
.onhover-show-div {
  top: 80px;
  position: absolute;
  z-index: 8;
  background-color: var(--vf-white-500);
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

/**======Main Header css Ends ======**/

.onhover-show-div {
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  left: 0;
}

.onhover-dropdown:hover .onhover-show-div {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  visibility: visible;
  border-radius: 5px;
  overflow: hidden;
}
.onhover-dropdown:hover .onhover-show-div:before {
  width: 0;
  height: 0;
  border-left: 7px dashed transparent;
  border-right: 7px dashed transparent;
  border-bottom: 7px dashed #fff;
  content: "";
  top: -7px;
  position: absolute;
  left: 10px;
  z-index: 2;
}
.onhover-dropdown:hover .onhover-show-div:after {
  width: 0;
  height: 0;
  border-left: 7px dashed transparent;
  border-right: 7px dashed transparent;
  border-bottom: 7px dashed #d7e2e9;
  content: "";
  top: -7px;
  position: absolute;
  left: 10px;
  z-index: 1;
}

.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .mega-menu-container::before,
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #d4d7d9;
  top: 6px;
  left: 20px;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}

.page-wrapper.horizontal-wrapper
  .page-body-wrapper
  .sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  li
  a:after {
  position: absolute;
  content: "";
  top: 49%;
  width: 5px;
  height: 1px;
  border-radius: 100%;
  background-color: #59667a;
}

.page-wrapper {
  position: relative;
}
.page-wrapper .page-header {
  max-width: 100vw;
  position: fixed;
  align-items: center;
  top: 0;
  z-index: 8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--vf-white-500);
  padding: 15px 20px;
  box-shadow: 2px 1px 4px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 1428px) {
  .page-wrapper .page-header {
    padding: 15px 4px;
  }
}
@media (max-width: 1199px) {
  .page-wrapper .page-header {
    padding: 15px;
  }
}
.page-wrapper .page-header .header-wrapper {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.page-wrapper .page-header .header-wrapper .search-full {
  background-color: #fff;
  position: absolute;
  right: 0;
  z-index: 1;
  height: 0;
  width: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper .page-header .header-wrapper .search-full input {
  line-height: 30px;
  padding-left: 60px;
  width: 100% !important;
  background-color: #fff;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
}
.page-wrapper .page-header .header-wrapper .search-full input:focus {
  outline: none !important;
}
.page-wrapper
  .page-header
  .header-wrapper
  .search-full
  .form-group
  .close-search {
  position: absolute;
  font-size: 15px;
  right: 30px;
  top: 11px;
  color: #898989;
  cursor: pointer;
}
.page-wrapper .page-header .header-wrapper .search-full .form-group:before {
  position: absolute;
  left: 30px;
  top: 11px;
  z-index: 2;
  content: "\f002";
  font-size: 16px;
  color: #898989;
  font-family: FontAwesome;
}
.page-wrapper .page-header .header-wrapper .nav-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.page-wrapper .page-header .form-group span {
  vertical-align: middle;
  vertical-align: sub;
  font-size: 20px;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right.right-header
  ul
  li
  .header-search {
  cursor: pointer;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right.right-header
  ul
  li
  .profile-media
  .flex-grow-1 {
  margin-left: 15px;
  min-width: 84px;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .profile-nav
  .profile-media {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--vf-blue-500);
  color: #c7cbed;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}
.page-wrapper .page-header .header-wrapper .nav-right > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.page-wrapper .page-header .form-group {
  padding: 8px 10px;
  display: inline-block;
  position: relative;
  background: var(--vf-gray-050);
  border-radius: 8px;
}
@media (max-width: 1366px) {
  .page-wrapper .page-header .header-wrapper .nav-right > ul > li {
    margin-right: 8px;
  }
}
@media (max-width: 360px) {
  .page-wrapper .page-header .header-wrapper .nav-right > ul > li {
    margin-right: 2px;
  }
}
.page-wrapper .page-header .form-group span {
  margin-right: 8px;
  font-size: 20px;
  color: var(--vf-gray-500);
}
.page-wrapper .page-header .form-group input:focus {
  outline: none;
}
.page-wrapper .page-header .header-wrapper .nav-right > ul > li:last-child {
  background-color: transparent;
  border-radius: 0px;
  margin-right: 0px;
}
.page-wrapper .page-header .header-wrapper .nav-right > ul > li:first-child {
  display: none;
}
@media (max-width: 1199px) {
  .page-wrapper .page-header .header-wrapper .nav-right > ul > li:first-child {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .page-wrapper .page-header .header-wrapper .nav-right > ul > li:nth-child(2) {
    display: none !important;
  }
}
.page-wrapper .page-header .header-wrapper .nav-right > ul > li .badge {
  position: absolute;
  right: -4px;
  top: -2px;
  padding: 4px 6px;
  font-size: 10px;
  font-weight: 600;
  background: var(--vf-green-500);
}
.page-wrapper .page-header .header-wrapper .nav-right .onhover-show-div {
  width: 330px;
  top: 50px;
  right: 0;
  left: unset;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  .dropdown-title {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px dashed rgba(145, 142, 153, 0.3);
}
.page-wrapper .page-header .header-wrapper .nav-right .onhover-show-div ul {
  padding: 15px;
}
.page-wrapper .page-header .header-wrapper .nav-right .onhover-show-div li {
  padding: 10px;
}
.page-wrapper .page-header .header-wrapper .nav-right .onhover-show-div li p {
  font-size: 13px;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}
.page-wrapper .page-header .header-wrapper .nav-right .onhover-show-div li a {
  text-decoration: none;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  li
  a
  h6 {
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  li
  a
  .material-symbols-outlined {
  vertical-align: bottom;
  margin-right: 5px;
  font-size: 18px;
  color: var(--vf-gray-700);
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  .profile-dd
  img {
  width: 32px;
  height: 32px;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  .profile-info {
  background-color: var(--vf-gray-100);
  padding: 5px 8px;
  position: relative;
  margin-top: 8px;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  .profile-info::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--vf-border);
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  margin: 0 auto;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  .profile-info
  p {
  font-size: 12px;
  color: var(--vf-gray-600);
  padding: 3px 0;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  .profile-info
  p
  label {
  background-color: #e9f6ec;
  color: #25a244;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 500;
  padding: 1px 4px;
  line-height: normal;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  .profile-info
  p
  span {
  font-weight: 600;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  li
  + li {
  margin-top: 15px;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  li:last-child {
  padding-bottom: 15px;
}
.page-wrapper .page-header .header-wrapper .nav-right .onhover-show-div:before,
.page-wrapper .page-header .header-wrapper .nav-right .onhover-show-div:after {
  right: 10px !important;
  left: unset !important;
}
.page-wrapper .page-header .header-wrapper .nav-right li > .notification-box {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: var(--vf-blue-050);
}
.page-wrapper .page-header .header-wrapper .nav-right .notification-dropdown {
  top: 42px;
  width: 300px;
  right: 0 !important;
  left: unset;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .notification-dropdown
  .notification-box
  .d-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  text-align: left;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .notification-dropdown
  .notification-box
  .d-flex
  .flex-shrink-0 {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .notification-dropdown
  .notification-box
  .d-flex
  .flex-grow-1
  a {
  text-decoration: none;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .notification-dropdown
  .notification-box
  .d-flex
  .flex-grow-1
  a
  h6 {
  color: #3d434a;
  font-weight: 600;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .notification-dropdown
  .notification-box
  .d-flex
  .flex-grow-1
  p {
  font-size: 14px;
  color: #9b9b9b;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .notification-dropdown
  li {
  background-color: var(--vf-gray-100);
  border-radius: 5px;
  box-shadow: none;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .notification-dropdown
  li:last-child {
  text-align: center;
  background-color: transparent;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .notification-dropdown:before,
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .notification-dropdown:after {
  right: 28px !important;
  left: unset !important;
}
.page-wrapper .page-header .header-wrapper .nav-right .profile-dropdown {
  width: 250px;
  top: 42px;
  right: 0;
  padding: 0;
}
.page-wrapper .page-header .header-wrapper .nav-right .profile-dropdown li {
  padding: 5px 10px !important;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .profile-dropdown
  li:not(:first-child, :nth-child(6), :nth-child(7)):hover {
  background-color: var(--vf-gray-100);
}
.page-wrapper .page-header .header-wrapper .nav-right .profile-dropdown li a {
  text-decoration: unset;
  display: block;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .profile-dropdown
  li
  a.logout-link {
  background-color: #fae6e6;
  border-radius: 5px;
  padding: 6px 10px;
  display: block;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .onhover-show-div
  li
  a.logout-link
  .material-symbols-outlined,
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .profile-dropdown
  li
  a.logout-link
  span,
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .profile-dropdown
  li:hover
  a.logout-link
  span {
  color: var(--vf-red-500);
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .profile-dropdown
  li:hover
  a
  span,
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .profile-dropdown
  li:not(:last-child):hover
  a
  .material-symbols-outlined {
  color: var(--theme-deafult);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .profile-dropdown
  li
  + li {
  margin-top: 0;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .profile-dropdown
  li:last-child {
  padding: 5px 10px 10px !important;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right
  .profile-dropdown
  li
  span {
  color: var(--vf-gray-700);
}
.page-wrapper .page-body-wrapper {
  background-color: var(--vf-page);
}
.page-wrapper .page-body-wrapper .page-body {
  min-height: calc(100vh - 136px);
  margin-top: 136px;
  padding: 0 15px 0 15px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.page-wrapper .page-body-wrapper .page-body:before {
  -webkit-animation: fadeIn 0.5s ease-in-out;
  animation: fadeIn 0.5s ease-in-out;
}
.page-wrapper .page-body-wrapper .page-title > .row {
  margin: 0;
}
.page-wrapper .page-body-wrapper .page-title > .row .col-6 {
  padding: 0;
}
.page-wrapper .page-body-wrapper .page-title .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-wrapper .page-body-wrapper .page-title .row h3 {
  font-size: 24px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.page-wrapper .page-body-wrapper .page-title .row h3 small {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  text-transform: capitalize;
  color: #9b9b9b;
}
.page-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  a.active
  svg {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  a.active
  svg.stroke-icon {
  stroke: #fff;
}
.page-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  a.active
  svg.fill-icon {
  fill: #fff;
}
.page-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  li
  a {
  text-transform: capitalize;
}
.page-wrapper .sidebar-wrapper[data-layout="stroke-svg"] iconify-icon {
  display: inline-block;
}
.page-wrapper .sidebar-wrapper[data-layout="stroke-svg"] .fill-icon {
  display: none;
}

.page-wrapper.compact-wrapper .page-header {
  margin-left: 252px;
  width: calc(100% - 252px);
}
.page-wrapper.compact-wrapper .page-header .header-logo-wrapper {
  display: none;
}
.page-wrapper.compact-wrapper .page-header.close_icon {
  margin-left: 57px;
  width: calc(100% - 57px);
}
.page-wrapper.compact-wrapper .page-header .header-wrapper .logo-wrapper {
  display: none;
}
.page-wrapper.compact-wrapper .page-header .header-wrapper .toggle-sidebar {
  display: none;
}
.page-wrapper.compact-wrapper .page-body-wrapper div.sidebar-wrapper {
  position: fixed;
  top: 0;
  z-index: 9;
  height: auto;
  line-height: inherit;
  background: var(--vf-white-500);
  width: 252px;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-right: 1px solid var(--vf-border);
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .logo-wrapper,
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .logo-icon-wrapper {
  padding: 22px 12px;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .logo-wrapper
  .logo
  img {
  max-width: 170px;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .logo-icon-wrapper {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon {
  width: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .badge {
  opacity: 0;
  width: 0;
  padding: 0;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li {
  max-width: 86px;
  margin: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  a {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  a {
  text-align: center;
  padding: 12px 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .sidebar-main-title {
  display: none !important;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .logo-wrapper {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .logo-icon-wrapper {
  text-align: right;
  display: block;
}
/* .page-wrapper.compact-wrapper .page-body-wrapper div.sidebar-wrapper.close_icon:hover {
  width: 265px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
} */
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon:hover
  .badge {
  opacity: 1;
  width: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon:hover
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li {
  max-width: unset;
  margin: initial;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon:hover
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  a {
  text-align: left;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon:hover
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  a {
  display: block;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon:hover
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  > a {
  padding: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon:hover
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  > a
  span:not(.material-symbols-outlined) {
  display: inline-block;
  margin-left: 10px;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon:hover
  .sidebar-main-title {
  opacity: 1;
  display: block !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon:hover
  .sidebar-main-title.pin-title {
  display: none !important;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon:hover
  .sidebar-main-title.pin-title.show {
  display: block !important;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon:hover
  .logo-wrapper {
  display: block;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon:hover
  .logo-icon-wrapper {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .mobile-sidebar {
  -webkit-transform: translate(183px);
  transform: translate(183px);
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  ~ .page-body,
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  ~ footer {
  margin-left: 57px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .sidebar-main
  .sidebar-links {
  height: calc(100vh - 118px);
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-link::before {
  right: 20px;
  left: unset;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  a
  span:not(.material-symbols-outlined) {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .sidebar-main
  .sidebar-links
  .sidebar-list
  .sidebar-title.active
  ~ .sidebar-submenu {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .according-menu {
  display: none;
}
.page-wrapper.compact-sidebar .page-header.close_icon {
  margin-left: 0;
  width: calc(100% - 0px);
}
.page-wrapper.compact-sidebar
  .page-body-wrapper
  div.sidebar-wrapper.close_icon {
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
}
.page-wrapper.compact-sidebar
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  ~ .page-body {
  margin-left: 0px;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper.close_icon
  .sidebar-main
  .sidebar-links
  li
  a
  > iconify-icon {
  margin-right: 0;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .left-arrow,
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .right-arrow {
  display: none;
}

.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links {
  height: calc(100vh - 105px);
  left: -300px;
  z-index: 99;
  -webkit-transition: color 1s ease;
  transition: color 1s ease;
  overflow: auto;
  color: rgba(0, 0, 0, 0);
  margin-top: 20px;
  margin-bottom: 30px;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  li
  a
  > iconify-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  margin-right: 10px;
  vertical-align: middle;
  float: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  li
  a
  span {
  text-transform: capitalize;
  color: var(--vf-gray-700);
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  li
  a
  span.material-symbols-outlined {
  font-size: var(--vf-font-size-22);
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  li
  a
  .according-menu
  span {
  color: var(--vf-gray-600);
  font-size: var(--vf-font-size-20);
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  li
  a.link-nav
  .according-menu {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  li:last-child {
  border-bottom: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .back-btn {
  display: block;
  width: 100%;
  padding: 0;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li:first-child {
  display: none !important;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .back-btn
  .mobile-back {
  padding: 20px;
  color: #9b9b9b;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px dashed #efefef;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li {
  display: block;
  width: 100%;
  position: relative;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li.sidebar-main-title {
  padding: 25px 0 12px 20px;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li.sidebar-main-title
  div {
  padding: 6px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #374462;
  border-radius: 6px;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li.sidebar-main-title.pin-title {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li.sidebar-main-title.pin-title.show {
  display: block;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li.sidebar-main-title:nth-child(2) {
  margin-top: 0;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li.sidebar-main-title:nth-child(2)::before {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li.sidebar-list
  .badge {
  position: absolute;
  right: 50px;
  top: 14.5px;
  padding: 0.45em 0.8em 0.33em;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 0.7px;
  font-weight: 600;
  font-family: "Poppins", sans-serif, sans-serif;
  border-radius: 10px;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li.sidebar-list:hover
  > a:hover {
  background-color: var(--vf-blue-050);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li:hover
  .sidebar-link:not(.active):hover
  svg {
  fill: rgba(122, 112, 186, 0.001);
  stroke: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li:hover
  .sidebar-link:not(.active):hover
  svg.fill-icon {
  fill: #fff;
  stroke: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li:hover
  .sidebar-link:not(.active):hover
  span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li:hover
  .sidebar-link:not(.active):hover
  .according-menu
  i {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  a {
  padding: 12px 16px;
  font-size: 1rem;
  margin: 0;
  position: relative;
  color: var(--vf-gray-700);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  a
  .sub-arrow {
  right: 20px;
  position: absolute;
  top: 10px;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  a
  .sub-arrow
  i {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  a
  .sub-arrow:before {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li:first-child {
  display: none !important;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu {
  width: 100%;
  padding: 0;
  position: relative !important;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  > li
  a {
  padding-left: 32px !important;
  font-weight: 400;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  .submenu-title
  .according-menu {
  top: 7px;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu.opensubmenu {
  display: block;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  li:hover
  > a {
  color: var(--vf-gray-700);
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  li
  .nav-sub-childmenu {
  display: none;
  position: relative !important;
  right: 0;
  width: 100%;
  padding: 0;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  li
  .nav-sub-childmenu.opensubchild {
  display: block;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  li
  .nav-sub-childmenu
  li
  a {
  padding: 6px 45px;
  padding-left: 56px !important;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  li
  .nav-sub-childmenu
  li
  a:after {
  display: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  li
  a {
  padding: 7px 25px;
  font-size: 14px;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  li
  a.active {
  color: var(--vf-gray-700);
  font-weight: 600;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  li
  a.active::before {
  background: #fff;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-submenu
  li
  a.active:after {
  border-top-color: #fff;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-link {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-link.active {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  margin-bottom: 5px;
  background-color: var(--vf-blue-050);
}

.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-link.active
  ~ .sidebar-submenu::before {
  height: calc(100% - 12px);
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-link.active
  .according-menu
  i {
  color: #fff;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .sidebar-main
  .sidebar-links
  .simplebar-wrapper
  .simplebar-mask
  .simplebar-content-wrapper
  .simplebar-content
  > li
  .sidebar-link.active
  span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--vf-blue-500);
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  div.sidebar-wrapper
  .simplebar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-wrapper.compact-wrapper .page-body-wrapper .according-menu {
  position: absolute;
  right: 20px;
  top: 11px;
  display: block;
}
.page-wrapper.compact-wrapper .page-body-wrapper .according-menu iconify-icon {
  vertical-align: middle;
  font-weight: 500;
  font-size: 24px;
}
.page-wrapper.compact-wrapper .page-body-wrapper .main-menu.border-section {
  border: none;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  .main-menu
  .menu-left
  .main-menu-right
  .toggle-nav {
  position: absolute;
  z-index: 2;
  right: 145px;
  top: 6px;
}
.page-wrapper.compact-wrapper
  .page-body-wrapper
  .main-menu
  .menu-left
  .main-menu-right
  .toggle-nav
  .sidebar-name {
  font-size: 18px;
  padding-left: 5px;
  text-transform: uppercase;
}
.page-wrapper.compact-wrapper .page-body-wrapper .page-body {
  min-height: calc(100vh - 75px);
  margin-top: 87px;
  margin-left: 252px;
}
@media screen and (max-width: 1366px) {
  .profile-dropdown.onhover-show-div {
    right: 0;
    left: unset !important;
  }
  .profile-dropdown.onhover-show-div:before,
  .profile-dropdown.onhover-show-div:after {
    right: 10px !important;
    left: unset !important;
  }
}
@media screen and (max-width: 1199px) {
  .page-wrapper .page-header .header-wrapper .nav-right > ul > li {
    padding: 6px;
  }
}
@media screen and (min-width: 992px) {
  .page-header .header-wrapper .nav-right .notification-dropdown {
    top: 46px;
  }
}
/**=====================
  Sidebar CSS Ends
==========================**/
.form-control {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  padding: 0.625rem 0.938rem;
}
.form-control:focus {
  background-color: #f5f6f8;
}
.form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0.15em;
  border-color: var(--vf-gray-700);
  border-width: 1.5px;
}
.form-check-input:focus {
  box-shadow: none;
  border-color: rgb(98, 99, 100);
}
.form-check-input.success:checked {
  background-color: #25a244;
  border-color: #25a244;
}
.img-holder {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  text-align: center;
  z-index: 999;
}
@media (min-height: 700px) {
  .img-holder {
    position: fixed;
  }
}
/**=====================
    Login CSS Ends
==========================**/
.flatpickr-calendar {
  background: 0 0;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #ffffff;
  -webkit-box-shadow:
    1px 0 0 #e9ebec,
    -1px 0 0 #e9ebec,
    0 1px 0 #e9ebec,
    0 -1px 0 #e9ebec,
    0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow:
    1px 0 0 #e9ebec,
    -1px 0 0 #e9ebec,
    0 1px 0 #e9ebec,
    0 -1px 0 #e9ebec,
    0 3px 13px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar.inline,
.flatpickr-calendar.open {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 1056;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.flatpickr-calendar.inline .flatpickr-rContainer {
  display: block;
  width: 100%;
}
.flatpickr-calendar.inline .flatpickr-rContainer .flatpickr-days {
  width: 100%;
  border: var(--vz-border-width) solid var(--vz-input-border-custom);
  border-top: none;
  border-radius: 0 0 5px 5px;
}
.flatpickr-calendar.inline .flatpickr-rContainer .flatpickr-days .dayContainer {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.flatpickr-calendar.inline
  .flatpickr-rContainer
  .flatpickr-days
  .dayContainer
  .flatpickr-day {
  max-width: 100%;
  border-radius: 4px;
}
.flatpickr-calendar.inline .flatpickr-time {
  border: var(--vz-border-width) solid var(--vz-input-border-custom) !important;
  border-radius: var(--vz-border-radius);
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth
  .flatpickr-days
  .dayContainer:nth-child(n + 1)
  .flatpickr-day.inRange:nth-child(7n + 7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.flatpickr-calendar.multiMonth
  .flatpickr-days
  .dayContainer:nth-child(n + 2)
  .flatpickr-day.inRange:nth-child(7n + 1) {
  -webkit-box-shadow:
    -2px 0 0 #e6e6e6,
    5px 0 0 #e6e6e6;
  box-shadow:
    -2px 0 0 #e6e6e6,
    5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasTime .dayContainer,
.flatpickr-calendar .hasWeeks .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e9ebec;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar::after,
.flatpickr-calendar::before {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.arrowRight::after,
.flatpickr-calendar.arrowRight::before,
.flatpickr-calendar.rightMost::after,
.flatpickr-calendar.rightMost::before {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter::after,
.flatpickr-calendar.arrowCenter::before {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar::before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar::after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowTop::before {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop::before {
  border-bottom-color: var(--vf-blue-500);
}
.flatpickr-calendar.arrowTop::after {
  border-bottom-color: var(--vf-blue-500);
}
.flatpickr-calendar.arrowBottom::after,
.flatpickr-calendar.arrowBottom::before {
  top: 100%;
}
.flatpickr-calendar.arrowBottom::before {
  border-top-color: var(--vf-blue-500);
}
.flatpickr-calendar.arrowBottom::after {
  border-top-color: var(--vf-blue-500);
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--vf-blue-500);
  border-radius: 5px 5px 0 0;
}
.flatpickr-months .flatpickr-month {
  background: 0 0;
  color: rgba(255, 255, 255, 0.9);
  fill: rgba(255, 255, 255, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flatpickr-months .flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.9);
  fill: rgba(255, 255, 255, 0.9);
}
.flatpickr-months .flatpickr-next-month.flatpickr-disabled,
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-next-month i,
.flatpickr-months .flatpickr-prev-month i {
  position: relative;
}
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month {
  left: 0;
}
.flatpickr-months .flatpickr-next-month.flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month {
  right: 0;
}
.flatpickr-months .flatpickr-next-month:hover,
.flatpickr-months .flatpickr-prev-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-next-month:hover svg,
.flatpickr-months .flatpickr-prev-month:hover svg {
  fill: rgba(255, 255, 255, 0.9);
}
.flatpickr-months .flatpickr-next-month svg,
.flatpickr-months .flatpickr-prev-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-next-month svg path,
.flatpickr-months .flatpickr-prev-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-inner-spin-button,
.numInputWrapper input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(var(--vz-dark-rgb), 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 100%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  display: inline-block;
}
.flatpickr-current-month span.arrowUp::after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month input.cur-year {
  background: 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: var(--vz-font-weight-semibold);
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(255, 255, 255, 0.9);
  background: 0 0;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  background: 0 0;
  border: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: var(--vz-font-weight-semibold);
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: 0;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:active,
.flatpickr-current-month .flatpickr-monthDropdown-months:focus {
  outline: 0;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background-color: transparent;
}
.flatpickr-current-month
  .flatpickr-monthDropdown-months
  .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8);
}
.flatpickr-weekdays {
  background-color: var(--vf-blue-500);
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 36px;
  border-bottom: 1px solid #e9ebec;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: var(--vf-blue-500);
  color: #fff;
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: var(--vz-font-weight-medium);
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: 0 0;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--vz-body-color);
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.flatpickr-day:focus,
.flatpickr-day:hover {
  background-color: rgba(var(--vz-light-rgb), 0.7);
}
.flatpickr-day.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day.nextMonthDay:focus,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.today.inRange,
.flatpickr-day:focus,
.flatpickr-day:hover {
  cursor: pointer;
  outline: 0;
  background-color: #f3f6f9;
  border-color: #f3f6f9;
}
.flatpickr-day.today {
  border-color: var(--vf-blue-500);
  background-color: rgba(var(--vz-primary-rgb), 0.1);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.flatpickr-day.today:focus,
.flatpickr-day.today:hover {
  border-color: var(--vf-blue-500);
  background-color: rgba(var(--vz-primary-rgb), 0.15);
  color: var(--vz-body-color);
}
.flatpickr-day.endRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.endRange:focus,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected,
.flatpickr-day.selected.inRange,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.startRange:focus,
.flatpickr-day.startRange:hover {
  background: var(--vf-blue-500);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: var(--vf-blue-500);
}
.flatpickr-day.endRange.startRange,
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  -webkit-box-shadow: -10px 0 0 var(--vf-blue-500);
  box-shadow: -10px 0 0 var(--vf-blue-500);
}
.flatpickr-day.endRange.startRange .endRange,
.flatpickr-day.selected.startRange .endRange,
.flatpickr-day.startRange.startRange .endRange {
  border-radius: 50px;
}
.flatpickr-day.endRange.endRange,
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow:
    -5px 0 0 #f3f6f9,
    5px 0 0 #f3f6f9;
  box-shadow:
    -5px 0 0 #f3f6f9,
    5px 0 0 #f3f6f9;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.nextMonthDay,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.prevMonthDay {
  color: rgba(33, 37, 41, 0.3);
  background: 0 0;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(33, 37, 41, 0.3);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow:
    -5px 0 0 var(--vf-blue-500),
    5px 0 0 var(--vf-blue-500);
  box-shadow:
    -5px 0 0 var(--vf-blue-500),
    5px 0 0 var(--vf-blue-500);
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e9ebec;
  box-shadow: 1px 0 0 #e9ebec;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 35px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(var(--vz-body-rgb), 0.3);
  background: 0 0;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowDown:after,
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #e9ebec;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: var(--vz-body-color);
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: 700;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-am-pm,
.flatpickr-time .flatpickr-time-separator {
  height: inherit;
  float: left;
  line-height: inherit;
  color: var(--vz-body-color);
  font-weight: 700;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-flex-item-align: center;
  align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time .flatpickr-am-pm:focus,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time input:hover {
  background: rgba(var(--vz-primary-rgb), 0.04);
}
.flatpickr-am-pm:focus,
.flatpickr-am-pm:hover,
.numInput:focus,
.numInput:hover,
.numInputWrapper:focus,
.numInputWrapper:hover {
  background-color: transparent;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
.form-control:focus,
.form-select:focus {
  box-shadow: none;
}
.custom-select .normalize {
  min-width: 170px;
}

/* Overview page */
.vf-overview-container {
  width: 100%;
}

.vf-overview-summary-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.vf-overview-summary-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 4px 10px;
  width: auto;
}

.vf-overview-summary-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: var(--vf-font-size-20);
}

.vf-overview-summary-card p {
  margin-bottom: 0px;
  color: var(--vf-gray-600);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-overview-summary-card strong {
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-overview-export-btn {
  min-height: 50px;
  font-size: var(--vf-font-size-14);
}

.vf-overview-filter-bar {
  display: grid;
  grid-template-columns: 170px 1fr;
  width: 100%;
  height: 54px;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--vf-gray-900);
}

.vf-overview-filter-bar > span {
  color: var(--vf-static-white);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-sm);
  text-transform: uppercase;
}

.vf-overview-filter-bar .vf-select {
  width: 100%;
}

.vf-overview-threshold-card {
  position: relative;
  padding: 16px 12px;
  overflow: hidden;
  width: 100%;
}

.vf-overview-effect-card {
  overflow: hidden;
}

.vf-overview-card-corner {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 186px;
  height: 152px;
  border-bottom-left-radius: 585px;
  background: var(--vf-gray-050);
}

.vf-overview-donut-wrap {
  display: flex;
  justify-content: center;
  padding: 10px 0 12px;
}

.vf-overview-donut {
  --vf-donut-circumference: 515.22;
  --vf-donut-offset: 41.22;
  position: relative;
  display: flex;
  width: 180px;
  height: 180px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.vf-overview-donut-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.vf-overview-donut-track,
.vf-overview-donut-progress {
  fill: none;
  stroke-width: 12;
}

.vf-overview-donut-track {
  stroke: var(--vf-gray-050);
}

.vf-overview-donut-progress {
  stroke: var(--vf-green-500);
  stroke-dasharray: var(--vf-donut-circumference);
  stroke-dashoffset: var(--vf-donut-offset);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.2s ease;
}

.vf-overview-donut-center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.vf-overview-donut-center strong {
  display: block;
  color: var(--vf-black-500);
  font-size: var(--vf-font-size-32);
  font-weight: var(--vf-font-weight-bold);
  line-height: var(--vf-line-height-md);
  margin-bottom: 4px;
}

.vf-overview-donut-center span {
  color: var(--vf-green-500);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-overview-threshold-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vf-overview-threshold-stat {
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--vf-gray-100);
}

.vf-overview-threshold-stat p {
  margin-bottom: 0px;
  color: var(--vf-gray-600);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-overview-threshold-stat div {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.vf-overview-threshold-stat strong {
  font-size: var(--vf-font-size-24);
  font-weight: var(--vf-font-weight-extrabold);
  line-height: var(--vf-line-height-md);
}

.vf-overview-threshold-stat span {
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  vertical-align: bottom;
}

.vf-overview-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--vf-black-500);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-overview-legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.vf-overview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.vf-overview-effect-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 16px 24px;
}

.vf-overview-effect-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vf-overview-effect-meta {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 10px;
}

.vf-overview-effect-meta h3 {
  margin-bottom: 0;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-sm);
}

.vf-overview-effect-meta p {
  margin-bottom: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-overview-effect-meta strong {
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-overview-effect-track,
.vf-table-score-track {
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: var(--vf-gray-200);
}

.vf-overview-effect-track {
  height: 10px;
  border: 2px solid var(--vf-gray-100);
}

.vf-overview-effect-track span,
.vf-table-score-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.vf-data-table-card {
  margin-bottom: 24px;
  overflow: hidden;
}

.vf-data-table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vf-data-table-toolbar .vf-card-title {
  white-space: nowrap;
}

.vf-data-table-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vf-table-profile-label {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  white-space: nowrap;
}

.vf-table-profile-tabs {
  gap: 8px;
  border-bottom: 0;
}

.vf-table-profile-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 8px;
  border: 1px solid var(--vf-border) !important;
  border-radius: 8px;
  color: var(--vf-gray-700);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  white-space: nowrap;
}

.vf-table-profile-tab:hover,
.vf-table-profile-tab:focus {
  border-color: var(--vf-blue-500);
  color: var(--vf-blue-500);
}

.vf-table-profile-tab span {
  display: none;
}

.vf-table-profile-tabs .vf-table-profile-tab.active,
.vf-table-profile-tabs .nav-link.active {
  border-color: var(--vf-blue-500);
  color: var(--vf-static-white);
  background: var(--vf-blue-500);
}

.vf-table-profile-tabs .vf-table-profile-tab.active span,
.vf-table-profile-tabs .nav-link.active span {
  display: inline-flex;
}

.vf-table-search {
  display: flex;
  width: 200px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--vf-white-500);
}

.vf-table-search span {
  color: var(--vf-gray-500);
  font-size: var(--vf-font-size-20);
}

.vf-table-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--vf-gray-700);
  font: inherit;
  font-size: var(--vf-font-size-12);
  background: transparent;
}

.vf-table-search input::placeholder {
  color: var(--vf-gray-500);
}

.vf-data-table-wrap {
  overflow-x: auto;
  background: var(--vf-white-500);
}

.vf-data-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

.vf-data-table th {
  padding: 12px 24px;
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.vf-data-table td {
  padding: 12px 24px;
  border-top: 1px solid var(--vf-border);
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-sm);
  vertical-align: middle;
  white-space: nowrap;
}

.vf-table-device-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vf-table-device-cell strong,
.vf-table-device-cell div span {
  display: block;
}

.vf-table-device-cell strong {
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-table-device-cell div span {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-table-score-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vf-table-score-track {
  width: 100px;
  height: 7px;
}

.vf-table-score-cell strong {
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-status-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.vf-status-badge.active {
  color: var(--vf-green-500);
  background: var(--vf-green-surface);
}

.vf-status-badge.active i {
  background: var(--vf-green-500);
}

.vf-status-badge.warning {
  color: var(--vf-orange-500);
  background: var(--vf-orange-surface);
}

.vf-status-badge.warning i {
  background: var(--vf-orange-500);
}

.vf-status-badge.critical {
  color: var(--vf-red-500);
  background: var(--vf-red-50);
}

.vf-status-badge.critical i {
  background: var(--vf-red-500);
}

.vf-status-badge.stale {
  color: var(--vf-gray-700);
  background: var(--vf-foundation-gray-500);
}

.vf-status-badge.stale i {
  background: var(--vf-gray-700);
}

.vf-status-badge.offline {
  color: var(--vf-red-500);
  background: var(--vf-red-50);
}

.vf-status-badge.offline i {
  background: var(--vf-red-500);
}

.vf-data-table-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 8px 24px;
  border-top: 1px solid var(--vf-border);
  background: var(--vf-gray-100);
}

.vf-data-table-footer p {
  margin-bottom: 0;
  color: var(--vf-black-500);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-sm);
}

.vf-table-rows-select {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-sm);
}

.vf-table-rows-control {
  width: 72px;
  height: 34px;
  padding: 0 28px 0 12px;
  border: 1px solid var(--vf-border);
  border-radius: 4px;
  color: var(--vf-gray-900);
  font: inherit;
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-sm);
}

.vf-table-rows-select button {
  display: inline-flex;
  width: 72px;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid var(--vf-border);
  border-radius: 4px;
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  font: inherit;
}

.vf-table-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.vf-table-pagination button {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  color: var(--vf-gray-700);
  background: transparent;
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
}

.vf-table-pagination button .material-symbols-outlined {
  font-size: var(--vf-font-size-24);
}

.vf-table-pagination button.active {
  color: var(--vf-static-white);
  background: var(--vf-blue-500);
  font-weight: var(--vf-font-weight-bold);
}

.vf-table-pagination button.muted {
  color: var(--vf-gray-500);
}

/* Reusable modal */
.vf-modal {
  --bs-modal-bg: var(--vf-white-500);
  --bs-modal-border-color: var(--vf-border);
  --bs-modal-border-radius: 0;
}

.vf-modal-dialog {
  width: min(calc(100% - 32px), 780px);
  max-width: none;
}

.vf-modal-content {
  display: flex;
  max-height: calc(100vh - 48px);
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  box-shadow: 0 24px 72px rgba(15, 20, 27, 0.24);
}

.vf-modal-header {
  align-items: flex-start;
  padding: 16px;
  border-bottom: 0;
  background: var(--vf-panel-blue);
}

.vf-modal-title {
  margin-bottom: 4px;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-18);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-sm);
}

.vf-modal-subtitle {
  margin-bottom: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-modal-close {
  margin: 0;
  opacity: 0.35;
}

.vf-modal-body {
  min-height: 0;
  overflow: hidden;
  padding: 16px;
}

.vf-modal-footer {
  min-height: 58px;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--vf-border);
  background: var(--vf-gray-100);
}

.vf-modal-secondary-btn {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--vf-gray-300);
  color: var(--vf-gray-700);
  background: var(--vf-white-500);
}

.vf-modal-primary-btn {
  min-height: 38px;
  padding: 8px 16px;
}

.vf-modal-danger-btn {
  min-height: 38px;
  padding: 8px 18px;
  border: 0;
  border-radius: 8px;
  color: var(--vf-static-white);
  background: var(--vf-red-500);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
}

.vf-modal-danger-btn:hover,
.vf-modal-danger-btn:focus-visible {
  color: var(--vf-static-white);
  background: var(--vf-red-600);
}

.vf-create-group-modal-dialog {
  width: min(calc(100% - 32px), 780px);
}

.vf-create-group-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: min(76vh, 620px);
  overflow-y: auto;
}

.vf-create-section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--vf-border);
}

.vf-create-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.vf-create-label,
.vf-create-section-title {
  display: block;
  margin-bottom: 12px;
  color: var(--vf-gray-900);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-sm);
}

.vf-create-input {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--vf-gray-900);
  background: var(--vf-gray-100);
  font-size: var(--vf-font-size-14);
}

.vf-create-input::placeholder {
  color: var(--vf-gray-500);
  opacity: 0.8;
}

.vf-create-input::-webkit-input-placeholder {
  color: var(--vf-gray-500);
  opacity: 0.8;
}

.vf-create-input::-moz-placeholder {
  color: var(--vf-gray-500);
  opacity: 0.8;
}

.vf-create-input:-ms-input-placeholder {
  color: var(--vf-gray-500);
}

.vf-create-input::-ms-input-placeholder {
  color: var(--vf-gray-500);
}

.vf-create-input:focus {
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  box-shadow: 0 0 0 3px rgba(10, 54, 157, 0.12);
}

html[data-theme="dark"] .vf-create-input {
  border: 1px solid var(--vf-gray-300);
  color: var(--vf-gray-900);
  background: #243040;
}

html[data-theme="dark"] .vf-create-input::placeholder {
  color: #b7c1cf;
}

html[data-theme="dark"] .vf-create-input:focus {
  border-color: var(--vf-blue-100);
  background: #293646;
  box-shadow: 0 0 0 3px rgba(111, 143, 208, 0.18);
}

.vf-create-mode-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 14px;
}

.vf-create-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-15);
  font-weight: var(--vf-font-weight-regular);
  line-height: var(--vf-line-height-sm);
}

.vf-create-radio .form-check-input {
  width: 18px;
  height: 18px;
  margin: 0;
  border: 2px solid var(--vf-gray-700);
}

.vf-create-radio .form-check-input:checked {
  border-color: var(--vf-blue-500);
  background-color: var(--vf-blue-500);
}

.vf-create-radio:has(input:checked) {
  color: var(--vf-blue-500);
  font-weight: var(--vf-font-weight-medium);
}

.vf-create-preset-panel,
.vf-create-custom-panel {
  padding: 12px 16px;
  border-radius: 4px;
  background: var(--vf-blue-surface);
}

.vf-create-preset-tabs {
  gap: 8px;
  margin-bottom: 12px;
  border-bottom: 0;
}

.vf-create-preset-tabs .nav-link {
  padding: 8px 12px;
  border: 1px solid var(--vf-border);
  border-radius: 8px;
  color: var(--vf-gray-700);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
}

.vf-create-preset-tabs .nav-link.active {
  border-color: var(--vf-blue-500);
  color: var(--vf-static-white);
  background: var(--vf-blue-500);
}

.vf-create-preset-summary {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-left: 4px solid var(--vf-green-500);
  background: var(--vf-white-500);
  border-radius: 2px;
}

.vf-create-preset-summary > span {
  color: var(--vf-green-500);
  font-size: var(--vf-font-size-24);
}

.vf-create-preset-summary p {
  margin-bottom: 10px;
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-sm);
}

.vf-create-preset-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vf-create-preset-chips span {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--vf-gray-700);
  background: var(--vf-gray-100);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-create-custom-actions {
  align-items: center;
  gap: 10px;
}

.vf-create-custom-actions:not(.d-none) {
  display: flex;
}

.vf-create-custom-actions button {
  border: 0;
  padding: 0;
  color: var(--vf-gray-700);
  background: transparent;
  font-size: var(--vf-font-size-13);
}

.vf-create-custom-actions button:first-child {
  color: var(--vf-blue-500);
}

.vf-create-category-group + .vf-create-category-group {
  margin-top: 24px;
}

.vf-create-category-group h4 {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--vf-border);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-sm);
}

.vf-create-category-group h4 span {
  color: var(--vf-gray-700);
}

.vf-create-category-group:first-child h4 span {
  color: var(--vf-red-500);
  text-transform: uppercase;
}

.vf-create-category-group:nth-child(2) h4 span {
  color: var(--vf-blue-500);
}

.vf-create-category-group h4 em {
  color: var(--vf-gray-600);
  font-style: normal;
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-regular);
}

.vf-create-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 16px;
}

.vf-create-category-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.vf-create-category-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  color: var(--vf-gray-700);
  background: var(--vf-white-500);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-create-category-grid .form-check-input {
  width: 16px;
  height: 16px;
  margin: 0;
  border-color: var(--vf-gray-300);
  border-radius: 2px;
}

.vf-create-category-grid .form-check-input:checked {
  border-color: var(--vf-blue-500);
  background-color: var(--vf-blue-500);
}

.vf-create-threshold-section p {
  margin: -8px 0 12px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-create-threshold {
  position: relative;
  --threshold-thumb-size: 20px;
  --threshold-edge-offset: 10px;
  padding-top: 42px;
  padding-bottom: 8px;
}

.vf-create-threshold input[type="range"] {
  width: 100%;
  height: 28px;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.vf-create-threshold input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--vf-blue-500) var(--threshold-percent, 80%),
    var(--vf-blue-surface) var(--threshold-percent, 80%)
  );
}

.vf-create-threshold input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -8px;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--vf-blue-500);
}

.vf-create-threshold input[type="range"]::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: var(--vf-blue-surface);
}

.vf-create-threshold input[type="range"]::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--vf-blue-500);
}

.vf-create-threshold input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: var(--vf-blue-500);
}

.vf-create-threshold-value {
  position: absolute;
  top: 6px;
  left: var(--threshold-percent, 80%);
  z-index: 1;
  min-width: 44px;
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-bold);
  line-height: var(--vf-line-height-tight);
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.vf-create-threshold-value::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--vf-blue-surface);
  border-bottom: 0;
  border-left: 8px solid transparent;
  transform: translateX(-50%);
}

.vf-create-threshold-ticks {
  position: relative;
  height: 56px;
  margin: 16px var(--threshold-edge-offset) 10px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-create-threshold-ticks span {
  position: absolute;
  top: 0;
  min-width: 64px;
  text-align: center;
  transform: translateX(-50%);
}

.vf-create-threshold-ticks span::before {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  margin: 0 auto 8px;
  background: var(--vf-border);
}

.vf-create-threshold-ticks span:nth-child(1) {
  left: 0;
  text-align: left;
  transform: none;
}

.vf-create-threshold-ticks span:nth-child(2) {
  left: 20%;
}
.vf-create-threshold-ticks span:nth-child(3) {
  left: 40%;
}
.vf-create-threshold-ticks span:nth-child(4) {
  left: 60%;
}
.vf-create-threshold-ticks span:nth-child(5) {
  left: 80%;
}

.vf-create-threshold-ticks span:nth-child(6) {
  right: 0;
  text-align: right;
  transform: none;
}

.vf-create-threshold-ticks span:nth-child(1)::before {
  margin-left: 0;
}

.vf-create-threshold-ticks span:nth-child(6)::before {
  margin-right: 0;
}

.vf-create-threshold-ticks strong,
.vf-create-threshold-ticks em {
  display: block;
  color: var(--vf-blue-500);
  font-weight: var(--vf-font-weight-semibold);
}

.vf-create-threshold-ticks em {
  font-style: normal;
  font-size: var(--vf-font-size-10);
}

/* Devices page */
.vf-device-metric-card {
  min-height: 102px;
  padding: 16px 12px;
  height: 100%;
}

.vf-device-metric-card p {
  margin-bottom: 18px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-device-metric-card > div:first-child span {
  font-size: var(--vf-font-size-24);
}

.vf-device-metric-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.vf-device-metric-value strong {
  color: var(--vf-black-500);
  font-size: var(--vf-font-size-24);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-device-metric-value span {
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-devices-table-toolbar {
  min-height: 64px;
}

.vf-devices-total-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--vf-static-white);
  background: var(--vf-gray-900);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-devices-search {
  width: 280px;
}

.vf-devices-filter-btn {
  min-height: 34px;
  padding: 7px 14px;
  border: 0;
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
}

.vf-devices-table td > strong {
  display: block;
}

.vf-devices-table td > strong {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-devices-table td > span {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-devices-device strong,
.vf-devices-device > span {
  display: block;
}

.vf-devices-device strong {
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-devices-name {
  align-items: center;
  gap: 6px;
}

.vf-devices-name:not(.d-none) {
  display: inline-flex;
}

.vf-devices-rename-trigger {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  color: var(--vf-blue-100);
  background: transparent;
  font-size: var(--vf-font-size-13);
}

.vf-devices-rename-trigger:hover,
.vf-devices-rename-trigger:focus {
  color: var(--vf-blue-500);
}

.vf-devices-rename-editor {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vf-devices-rename-input {
  width: 168px;
  height: 34px;
  padding: 0 10px;
  border: 2px solid var(--vf-blue-500);
  border-radius: 4px;
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  outline: 0;
}

.vf-devices-rename-save,
.vf-devices-rename-cancel {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: var(--vf-font-size-18);
}

.vf-devices-rename-save {
  border: 1px solid var(--vf-green-500);
  color: var(--vf-static-white);
  background: var(--vf-green-500);
}

.vf-devices-rename-cancel {
  border: 1px solid var(--vf-red-500);
  color: var(--vf-red-500);
  background: var(--vf-white-500);
}

.vf-devices-device > span {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-devices-score {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-devices-score div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vf-devices-score strong {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-semibold);
}

.vf-devices-score .vf-table-score-track {
  width: 132px;
  height: 6px;
}

.vf-devices-score span,
.vf-devices-score em {
  display: block;
  font-style: normal;
  font-weight: var(--vf-font-weight-medium);
}

.vf-devices-score em {
  color: #8a6d00;
}

.vf-devices-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.vf-devices-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  color: var(--vf-blue-500);
  background: transparent;
  font-size: var(--vf-font-size-18);
}

.vf-devices-actions button:not(.danger):nth-child(2) {
  color: var(--vf-gray-700);
}

.vf-devices-actions .danger {
  color: var(--vf-red-500);
}

/* Device details page */
.vf-device-details-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
  text-decoration: none;
}

.vf-device-details-summary {
  margin-bottom: 24px;
  padding: 20px 16px 12px;
}

.vf-device-details-title {
  margin-bottom: 0;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-22);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-lg);
}

.vf-device-details-meta,
.vf-device-details-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 8px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-device-details-meta > span:not(:last-child)::after {
  content: "•";
  display: inline-block;
  margin-left: 10px;
  color: var(--vf-gray-500);
  font-weight: var(--vf-font-weight-bold);
}

.vf-device-details-meta span.material-symbols-outlined {
  color: var(--vf-gray-700);
  margin-right: 4px;
  font-size: var(--vf-font-size-16);
}

.vf-device-details-meta strong,
.vf-device-details-categories strong {
  font-weight: var(--vf-font-weight-medium);
}

.vf-device-details-profile,
.vf-device-details-categories i {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--vf-blue-surface);
  color: var(--vf-blue-500);
  font-style: normal;
}

.vf-device-details-categories {
  margin-top: 4px;
}

.vf-device-details-categories i {
  color: var(--vf-gray-700);
  background: var(--vf-gray-100);
}

.vf-device-details-scan-btn {
  min-width: 128px;
}

.vf-device-details-monitor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--vf-border);
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-device-details-monitor strong {
  font-weight: var(--vf-font-weight-medium);
}

.vf-device-details-monitor strong i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--vf-green-500);
}

.vf-device-details-page.is-monitoring-paused .vf-device-monitor-state {
  color: var(--vf-gray-500) !important;
}

.vf-device-details-page.is-monitoring-paused .vf-device-monitor-state i {
  background: var(--vf-gray-500);
}

.vf-device-details-monitor p {
  margin-bottom: 0;
}

.vf-device-details-pause-btn {
  padding: 4px 6px;
  border: 1px solid var(--vf-blue-500);
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-regular);
}

.vf-device-score-card {
  position: relative;
  padding: 16px 24px;
}

.vf-device-score-card .vf-card-title i {
  color: var(--vf-gray-500);
  font-size: var(--vf-font-size-14);
}

.vf-device-score-value {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 8px;
}

.vf-device-score-value strong {
  color: var(--vf-blue-500);
  font-size: 45px;
  font-weight: var(--vf-font-weight-extrabold);
  line-height: var(--vf-line-height-xl);
}

.vf-device-score-value span {
  font-size: var(--vf-font-size-18);
  font-weight: var(--vf-font-weight-medium);
}

.vf-device-score-card p {
  margin-bottom: 4px;
  margin-top: 12px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-device-top-issue {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vf-red-500);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-device-paused-note {
  display: none;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  color: rgba(220, 53, 69, 0.45);
  font-size: var(--vf-font-size-11);
  line-height: var(--vf-line-height-tight);
}

.vf-device-details-page.is-monitoring-paused .vf-device-score-card {
  pointer-events: none;
}

.vf-device-details-page.is-monitoring-paused
  .vf-device-score-card
  > :not(.vf-device-paused-note) {
  opacity: 0.38;
}

.vf-device-details-page.is-monitoring-paused .vf-device-paused-note {
  display: flex;
}

.vf-device-issue-count {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--vf-red-500);
  background: var(--vf-red-50);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-medium);
}

.vf-device-issues-card {
  position: relative;
}

.vf-device-issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 16px 24px;
}

.vf-device-paused-overlay {
  display: none;
}

.vf-device-details-page.is-monitoring-paused .vf-device-issues-card {
  pointer-events: none;
}

.vf-device-details-page.is-monitoring-paused
  .vf-device-issues-card
  .vf-device-issue-grid {
  opacity: 0.9;
  filter: blur(4px);
}

.vf-device-details-page.is-monitoring-paused .vf-device-paused-overlay {
  position: absolute;
  inset: 48px 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.62);
}

html[data-theme="dark"]
  .vf-device-details-page.is-monitoring-paused
  .vf-device-paused-overlay {
  background: rgba(15, 20, 27, 0.68);
}

.vf-device-paused-overlay > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid var(--vf-gray-700);
  color: var(--vf-gray-700);
  background: var(--vf-blue-50);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-sm);
}

.vf-device-issue-box {
  padding: 16px 32px;
  border-left: 2px solid var(--vf-red-500);
  border-radius: 4px;
  background: rgba(220, 53, 69, 0.04);
}

.vf-device-issue-box strong,
.vf-device-issue-box span {
  display: block;
}

.vf-device-issue-box strong {
  margin-bottom: 4px;
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
}

.vf-device-issue-box span {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
}

.vf-device-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 16px 24px;
  background: var(--vf-white-500);
}

.vf-device-category-panel {
  padding: 16px;
  border: 1px solid var(--vf-border);
  border-radius: 8px;
}

.vf-device-category-panel h3 {
  margin-bottom: 16px;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-device-category-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  position: relative;
  padding-bottom: 13px;
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-device-category-row + .vf-device-category-row {
  margin-top: 20px;
}

.vf-device-category-row::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  border-radius: 8px;
  background: var(--vf-gray-200);
}

.vf-device-category-row i {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  height: 8px;
  border-radius: 8px;
}

.vf-device-category-row strong {
  font-weight: var(--vf-font-weight-semibold);
}

.vf-device-failed-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vf-red-500);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-device-failed-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vf-device-failed-toggle span {
  position: relative;
  width: 30px;
  height: 16px;
  border-radius: 999px;
  background: var(--vf-gray-300);
}

.vf-device-failed-toggle span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vf-white-500);
}

.vf-device-failed-toggle input:checked + span {
  background: var(--vf-red-500);
}

.vf-device-failed-toggle input:checked + span::after {
  transform: translateX(12px);
}

.vf-device-history-failed {
  background: rgba(220, 53, 69, 0.03);
}

/* Groups page */
.vf-groups-page .page-title {
  margin-bottom: 4px;
}

.vf-groups-sidebar {
  height: calc(100% - 24px);
  overflow: hidden;
}

.vf-groups-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--vf-border);
}

.vf-groups-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  color: var(--vf-blue-500);
  background: transparent;
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-groups-list {
  display: flex;
  flex-direction: column;
}

.vf-groups-mobile-controls {
  display: none;
}

.vf-group-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  border: 0;
  color: var(--vf-gray-700);
  background: transparent;
  text-align: left;
}

.vf-group-item::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 3px;
  background: transparent;
}

.vf-group-item.active {
  color: var(--vf-blue-500);
  background: var(--vf-gray-100);
}

.vf-group-item.active::after {
  background: var(--vf-blue-500);
}

.vf-group-item strong {
  color: inherit;
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-group-item span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vf-gray-600);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-group-item span > span {
  color: var(--vf-gray-600);
  font-size: var(--vf-font-size-16);
}

.vf-groups-summary-card {
  overflow: hidden;
}

.vf-groups-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--vf-border);
}

.vf-groups-title {
  margin-bottom: 0;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-24);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-md);
}

.vf-status-badge-sm {
  padding: 2px 6px;
}

.vf-groups-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vf-groups-icon-btn {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--vf-border);
  border-radius: 8px;
  color: var(--vf-gray-700);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-16);
}

.vf-groups-icon-btn.danger {
  color: var(--vf-red-500);
}

.vf-groups-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
}

.vf-groups-summary-grid p {
  margin-bottom: 8px;
  color: var(--vf-gray-600);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-groups-summary-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-groups-summary-grid span {
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-20);
}

.vf-groups-category-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 24px;
}

.vf-groups-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-regular);
  line-height: var(--vf-line-height-tight);
}

.vf-groups-category strong {
  font-weight: var(--vf-font-weight-semibold);
}

.vf-groups-category.success {
  border: 1px solid var(--vf-green-200);
  color: var(--vf-green-500);
  background: var(--vf-green-surface);
}

.vf-groups-category.danger {
  border: 1px solid rgba(220, 53, 69, 0.28);
  color: var(--vf-red-500);
  background: var(--vf-red-50);
}

.vf-groups-filter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-groups-filter-control {
  padding: 0;
  border: 0;
  color: var(--vf-gray-700);
  min-width: 84px;
  background-color: transparent;
  background-position: right 0 center;
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-groups-filter-wide .vf-groups-filter-control {
  width: 60px;
}

.vf-groups-table {
  min-width: 720px;
}

.vf-groups-table td strong {
  color: var(--vf-gray-900);
  font-weight: var(--vf-font-weight-medium);
}

.vf-groups-table .vf-status-badge {
  min-width: 64px;
  height: 24px;
  padding: 0 9px;
}

.vf-groups-table .vf-table-score-track {
  width: 56px;
  height: 5px;
}

.vf-groups-table .vf-table-score-cell {
  gap: 8px;
}

.vf-groups-table .vf-table-score-cell strong {
  font-weight: var(--vf-font-weight-semibold);
  font-size: var(--vf-font-size-13);
  color: var(--vf-gray-700);
}

.vf-groups-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--vf-blue-500);
  background: transparent;
  font-size: var(--vf-font-size-22);
}

.vf-delete-group-modal-dialog {
  width: min(calc(100% - 24px), 760px);
}

.vf-delete-group-question {
  margin-bottom: 16px;
  color: var(--vf-gray-900);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-18);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-lg);
}

.vf-delete-group-warning {
  padding: 12px 16px;
  border-radius: 4px;
  background: var(--vf-blue-surface);
}

.vf-delete-group-warning p {
  margin-bottom: 0;
  padding: 16px;
  border-left: 4px solid var(--vf-red-500);
  border-radius: 2px;
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-14);
}

.vf-delete-group-divider {
  margin: 24px 0;
  border-color: var(--vf-border);
  opacity: 1;
}

.vf-delete-group-devices-title {
  margin-bottom: 8px;
  color: var(--vf-gray-900);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-md);
}

.vf-delete-device-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.vf-delete-device-list span {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 4px;
  color: var(--vf-gray-900);
  background: var(--vf-blue-50);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-regular);
  line-height: var(--vf-line-height-tight);
}

.vf-delete-more-btn {
  border: 0;
  color: var(--vf-blue-500);
  background: transparent;
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-delete-more-btn:hover,
.vf-delete-more-btn:focus-visible {
  background: var(--vf-blue-surface);
}

/* Scan History page */
.vf-scan-range-card {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--vf-white-500);
}

.vf-scan-range-summary {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vf-scan-range-summary > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--vf-border);
}

.vf-scan-range-summary p {
  margin-bottom: 2px;
  color: var(--vf-gray-600);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-scan-range-summary strong {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-sm);
}

.vf-scan-range-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vf-scan-range-controls .vf-select-wrap {
  min-width: 210px;
}

.vf-scan-range-controls [data-scan-custom-range-wrap] {
  min-width: 245px;
}

.vf-scan-activity-card {
  min-height: 235px;
  padding: 16px;
}

.vf-scan-heatmap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.vf-scan-heatmap-header .vf-card-title {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: var(--vf-font-size-14);
}

.vf-scan-legend {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
  white-space: nowrap;
}

.vf-scan-legend i {
  width: 16px;
  height: 16px;
  border-radius: 2px;
}

.vf-scan-legend .level-1,
.vf-scan-cell.level-1 {
  background: #e5edfa;
}

.vf-scan-legend .level-2,
.vf-scan-cell.level-2 {
  background: #b7c6e7;
}

.vf-scan-legend .level-3,
.vf-scan-cell.level-3 {
  background: #8fa4d4;
}

.vf-scan-legend .level-4,
.vf-scan-cell.level-4 {
  background: #3f5fb0;
}

.vf-scan-legend .level-5,
.vf-scan-cell.level-5 {
  background: var(--vf-blue-500);
}

.vf-scan-legend .empty,
.vf-scan-cell.level-0 {
  background: var(--vf-gray-200);
}

.vf-scan-heatmap-scroll {
  overflow-x: auto;
  padding: 0 6px 2px;
}

.vf-scan-heatmap {
  display: grid;
  min-width: 560px;
  grid-template-columns: 42px repeat(var(--scan-weeks), 16px);
  grid-template-rows: 0px repeat(7, 16px) 20px;
  gap: 4px;
  align-items: center;
}

.vf-scan-heatmap-spacer {
  height: 6px;
}

.vf-scan-day-label {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-scan-cell {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 3px;
}

.vf-scan-cell:disabled {
  cursor: default;
  opacity: 0.55;
}

.vf-scan-cell:hover,
.vf-scan-cell:focus-visible {
  border-color: var(--vf-gray-900);
  outline: 0;
}

.vf-scan-cell:disabled:hover {
  border-color: transparent;
}

.vf-scan-cell.is-selected {
  border-color: var(--vf-gray-900);
  box-shadow: 0 0 0 2px var(--vf-white-500) inset;
}

.vf-scan-month-label {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-scan-metric-card {
  min-height: 108px;
  padding: 22px 16px;
}

.vf-scan-metric-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.vf-scan-metric-card p {
  margin-bottom: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-scan-metric-card span {
  font-size: var(--vf-font-size-24);
}

.vf-scan-metric-card strong {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-28);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-lg);
}

.vf-scan-category-card {
  padding: 0;
}

.vf-scan-category-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.vf-scan-category-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 1px solid var(--vf-border);
  border-radius: 999px;
  color: var(--vf-gray-700);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
}

.vf-scan-category-grid strong {
  font-weight: var(--vf-font-weight-semibold);
}

.vf-scan-category-grid .success {
  color: var(--vf-green-500);
  background: var(--vf-white-500);
}

.vf-scan-category-grid .danger {
  color: var(--vf-red-500);
  background: var(--vf-white-500);
}

.vf-scan-category-grid .muted {
  color: var(--vf-gray-700);
  background: var(--vf-white-500);
}

.vf-scan-report-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
}

.vf-scan-report-note span {
  flex: 0 0 auto;
  font-size: var(--vf-font-size-22);
}

.vf-scan-report-note p {
  margin-bottom: 0;
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-sm);
}

.vf-scan-report-note strong {
  font-weight: var(--vf-font-weight-semibold);
}

.vf-scan-day-report > .vf-card-title {
  margin-bottom: 12px;
  font-size: var(--vf-font-size-18);
  line-height: var(--vf-line-height-lg);
}

.vf-scan-day-report-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--vf-blue-100);
  border-left: 5px solid var(--vf-blue-500);
  border-radius: 10px;
  background: var(--vf-white-500);
}

.vf-scan-day-report-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 4px;
  color: var(--vf-blue-500);
  background: var(--vf-gray-050);
  font-size: var(--vf-font-size-24);
}

.vf-scan-day-report-copy {
  flex: 1 1 auto;
}

.vf-scan-day-report-copy h3 {
  margin-bottom: 6px;
  color: var(--vf-gray-900);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-sm);
}

.vf-scan-day-report-copy p {
  margin-bottom: 0;
  max-width: 96%;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
}

.vf-scan-report-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.vf-btn-outline {
  border: 1px solid var(--vf-border);
  color: var(--vf-blue-500);
  background: var(--vf-white-500);
}

.vf-btn-outline:hover,
.vf-btn-outline:focus-visible {
  border-color: var(--vf-blue-500);
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
}

.vf-scan-search {
  position: relative;
  display: inline-flex;
  width: 220px;
}

.vf-scan-search span {
  position: absolute;
  top: 50%;
  left: 12px;
  color: var(--vf-gray-500);
  font-size: var(--vf-font-size-20);
  transform: translateY(-50%);
}

.vf-scan-search input {
  width: 100%;
  padding: 8px 12px 8px 40px;
  border: 0;
  border-radius: 8px;
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-scan-search input::placeholder {
  color: var(--vf-gray-500);
}

.vf-scan-sort {
  min-width: 210px;
}

.vf-scan-export-btn {
  min-width: 118px;
}

.vf-scan-table-card {
  overflow: hidden;
}

.vf-scan-group-table {
  min-width: 840px;
}

.vf-scan-device-table {
  min-width: 900px;
}

.vf-scan-group-table td strong,
.vf-scan-device-table td strong {
  color: var(--vf-gray-900);
  font-weight: var(--vf-font-weight-medium);
}

.vf-scan-score {
  font-weight: var(--vf-font-weight-semibold);
}

.vf-scan-score.success {
  color: var(--vf-green-500);
}

.vf-scan-score.danger {
  color: var(--vf-red-500);
}

.vf-scan-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  color: var(--vf-blue-500);
  background: transparent;
  font-size: var(--vf-font-size-22);
}

.vf-scan-action-btn span {
  font-size: var(--vf-font-size-22);
}

.vf-scan-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.vf-scan-action-btn:hover,
.vf-scan-action-btn:focus-visible {
  background: var(--vf-blue-surface);
}

.vf-scan-device-table .vf-status-badge {
  min-width: 118px;
  height: 26px;
  justify-content: center;
  padding-inline: 10px;
  font-size: var(--vf-font-size-11);
}

.vf-scan-status.success {
  color: var(--vf-green-500);
}

.vf-scan-status.danger {
  color: var(--vf-red-500);
}

html[data-theme="dark"] .vf-scan-cell.is-selected {
  border-color: var(--vf-static-white);
  box-shadow: 0 0 0 2px var(--vf-white-500) inset;
}

html[data-theme="dark"] .vf-scan-legend .level-1,
html[data-theme="dark"] .vf-scan-cell.level-1 {
  background: #243759;
}

html[data-theme="dark"] .vf-scan-legend .level-2,
html[data-theme="dark"] .vf-scan-cell.level-2 {
  background: #39517f;
}

html[data-theme="dark"] .vf-scan-legend .level-3,
html[data-theme="dark"] .vf-scan-cell.level-3 {
  background: #5871ab;
}

html[data-theme="dark"] .vf-scan-legend .empty,
html[data-theme="dark"] .vf-scan-cell.level-0 {
  background: var(--vf-gray-200);
}

html[data-theme="dark"] .vf-scan-search input {
  border-color: var(--vf-border);
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
}

html[data-theme="dark"] .vf-btn-outline {
  border-color: var(--vf-border);
  color: var(--vf-blue-100);
  background: var(--vf-white-500);
}

/* API & Keys page */
.vf-api-page {
  scroll-behavior: smooth;
}

.vf-api-overview {
  padding: 12px 16px;
}

.vf-api-overview > p {
  margin-bottom: 16px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: 1.55;
}

.vf-api-inline-chip {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  padding: 1px 4px;
  border-radius: 3px;
  color: var(--vf-gray-700);
  background: var(--vf-gray-100);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
  overflow-wrap: anywhere;
  vertical-align: middle;
}

.vf-api-inline-chip-primary {
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
}

.vf-api-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 6px 0 22px;
}

.vf-api-overview-grid article {
  min-width: 0;
}

.vf-api-overview-grid span:not(.material-symbols-outlined),
.vf-api-license-block > span {
  display: block;
  margin-bottom: 4px;
  color: var(--vf-gray-700);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-api-copy-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--vf-border);
  border-radius: 4px;
  background: var(--vf-white-500);
}

.vf-api-copy-field code {
  color: var(--vf-blue-500);
  font-family: Consolas, "Courier New", monospace;
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
  word-break: break-all;
}

.vf-api-copy-field button,
.vf-api-license-field button,
.vf-api-code button {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 5px;
  color: var(--vf-gray-500);
  background: transparent;
  font-size: var(--vf-font-size-20);
}

.vf-api-copy-field button.is-copied,
.vf-api-license-field button.is-copied,
.vf-api-code button.is-copied {
  color: var(--vf-green-500);
  background: var(--vf-green-surface);
}

.vf-api-license-block {
  display: flex;
  flex-direction: column;
}

.vf-api-license-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 4px;
  background: var(--vf-gray-900);
}

.vf-api-license-field code {
  color: var(--vf-static-white);
  font-family: Consolas, "Courier New", monospace;
  font-size: var(--vf-font-size-15);
  line-height: var(--vf-line-height-tight);
  word-break: break-all;
}

.vf-api-license-field button {
  color: var(--vf-gray-200);
}

.vf-api-license-block p {
  margin: 16px 0 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-15);
  line-height: var(--vf-line-height-sm);
}

.vf-api-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vf-api-accordion-item {
  overflow: hidden;
  border: 1px solid var(--vf-border) !important;
  border-radius: 10px !important;
  background: var(--vf-white-500);
}

.vf-api-accordion-item .accordion-button {
  padding: 12px 16px;
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  box-shadow: none;
  font-family: var(--vf-font-family);
}

.vf-api-accordion-item .accordion-button.collapsed {
  background: var(--vf-white-500);
}

.vf-api-accordion-item .accordion-button::after {
  width: 18px;
  height: 18px;
  background-size: 18px;
  filter: grayscale(1);
}

.vf-api-accordion-heading {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.vf-api-accordion-heading em {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 6px;
  font-size: var(--vf-font-size-12);
  font-style: normal;
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-api-accordion-heading em.get {
  color: var(--vf-green-500);
  background: var(--vf-green-surface);
}

.vf-api-accordion-heading em.post {
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
}

.vf-api-accordion-heading span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.vf-api-accordion-heading strong {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-md);
}

.vf-api-accordion-heading small {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-regular);
  line-height: var(--vf-line-height-tight);
}

.vf-api-accordion-item .accordion-body {
  padding: 12px 16px;
  border-top: 1px solid var(--vf-border);
}

.vf-api-accordion-item .accordion-body p {
  margin-bottom: 16px;
  color: var(--vf-gray-700);
}

.vf-api-accordion-item .accordion-body h3 {
  margin: 16px 0 0;
  padding: 6px 12px;
  border-radius: 8px 8px 0 0;
  color: var(--vf-static-white);
  background: #505558;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-api-accordion-item .accordion-body h3 span {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 0 6px;
  border: 1px solid var(--vf-gray-200);
  border-radius: 4px;
  color: var(--vf-static-white);
  font-size: var(--vf-font-size-10);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-api-code {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0 0 8px 8px;
  background: #202529;
}

.vf-api-code pre {
  margin: 0;
  overflow: auto;
  padding: 16px 12px;
}

.vf-api-code code {
  color: var(--vf-static-white);
  font-family: Consolas, "Courier New", monospace;
  font-size: var(--vf-font-size-14);
  white-space: pre;
}

.vf-api-code button {
  position: absolute;
  top: -26px;
  right: 12px;
  color: var(--vf-gray-200);
  background: transparent;
  font-size: var(--vf-font-size-20);
}

.vf-api-note,
.vf-api-platform-line {
  margin: 22px 0 0 !important;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14) !important;
  line-height: var(--vf-line-height-md) !important;
}

.vf-api-platform-line {
  margin: 18px 0 18px !important;
}

.vf-api-platform-line > span:first-child {
  color: var(--vf-gray-700);
  font-weight: var(--vf-font-weight-regular);
}

.vf-api-reference-column {
  position: sticky;
  top: 75px;
  align-self: flex-start;
}

.vf-api-reference {
  position: static;
  overflow: hidden;
  padding: 0;
}

.vf-api-reference h2 {
  margin: 0;
  padding: 12px 16px;
  color: var(--vf-gray-900);
  background: var(--vf-panel-blue);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-api-reference nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 16px;
}

.vf-api-reference a {
  display: flex;
  align-items: center;
  padding: 4px 16px;
  border-radius: 4px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  text-decoration: none;
}

.vf-api-reference a:hover,
.vf-api-reference a:focus-visible,
.vf-api-reference a.active {
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
}

html[data-theme="dark"] .vf-api-copy-field code,
html[data-theme="dark"] .vf-api-reference a.active,
html[data-theme="dark"] .vf-api-reference a:hover,
html[data-theme="dark"] .vf-api-reference a:focus-visible,
html[data-theme="dark"] .vf-api-inline-chip-primary {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-api-code {
  background: #101722;
}

html[data-theme="dark"] .vf-api-license-field {
  background: #202529;
}

html[data-theme="dark"] .vf-api-license-field button,
html[data-theme="dark"] .vf-api-code button,
html[data-theme="dark"] .vf-api-accordion-heading em.post {
  color: var(--vf-gray-500);
}

html[data-theme="dark"] .vf-api-code code {
  color: var(--vf-gray-900);
}

html[data-theme="dark"]
  .vf-api-accordion-item
  .accordion-button:not(.collapsed) {
  background: var(--vf-panel-blue);
}

/* Downloads & Setup page */
.vf-downloads-page {
  color: var(--vf-gray-900);
}

.vf-downloads-install-card,
.vf-downloads-manual-card,
.vf-downloads-uninstall-card {
  overflow: hidden;
}

.vf-downloads-os-tabs {
  gap: 22px;
  padding: 0 22px;
  border-bottom: 1px solid var(--vf-border);
}

.vf-downloads-os-tabs .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 0;
  border-bottom: 4px solid transparent;
  border-radius: 0;
  color: var(--vf-gray-700);
  background: transparent;
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-downloads-os-tabs .nav-link span {
  font-size: var(--vf-font-size-20);
  font-weight: var(--vf-font-weight-regular);
}

.vf-downloads-os-tabs .nav-link.active {
  color: var(--vf-blue-500);
  border-bottom-color: var(--vf-blue-500);
  background: transparent;
  font-weight: var(--vf-font-weight-semibold);
}

.vf-downloads-section-body {
  padding: 12px 24px;
}

.vf-downloads-one-click-head {
  margin: 22px 22px 0;
  padding: 12px 24px;
  border-radius: 8px 8px 0 0;
  background: var(--vf-panel-blue);
}

.vf-downloads-one-click-head .vf-downloads-copy {
  max-width: none;
  margin-bottom: 0;
}

.vf-downloads-install-body {
  padding-top: 18px;
}

.vf-downloads-section-title {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-md);
}

.vf-downloads-install-card .vf-status-badge {
  padding-inline: 6px;
  text-transform: none;
  background-color: var(--vf-green-500);
  color: var(--vf-white-500);
}

.vf-downloads-copy,
.vf-downloads-instruction,
.vf-downloads-steps {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-sm);
}

.vf-downloads-copy {
  max-width: 900px;
  margin-bottom: 18px;
}

.vf-downloads-instruction {
  margin-bottom: 10px;
}

.vf-command-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #202529;
}

.vf-command-box code {
  flex: 1 1 auto;
  color: var(--vf-static-white);
  font-family: Consolas, "Courier New", monospace;
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-sm);
  overflow-wrap: anywhere;
}

.vf-command-box button {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 5px;
  color: var(--vf-gray-200);
  background: rgba(255, 255, 255, 0.18);
  font-size: var(--vf-font-size-20);
}

.vf-command-box button.is-copied {
  color: var(--vf-green-500);
  background: var(--vf-green-surface);
}

.vf-command-box-tall {
  align-items: flex-start;
  height: calc(100% - 28px);
  padding-top: 16px;
}

.vf-downloads-success {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0 0;
  color: var(--vf-green-500);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-sm);
}

.vf-downloads-success span {
  font-size: var(--vf-font-size-18);
}

.vf-downloads-after {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 16px;
  padding: 10px 22px;
  border-top: 1px solid var(--vf-border);
  background: var(--vf-blue-surface);
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-downloads-after span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: var(--vf-font-weight-medium);
}

.vf-downloads-after button,
.vf-downloads-tooltip-anchor {
  position: relative;
  border: 0;
  border-bottom: 1px dashed currentColor;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
}

.tooltip {
  z-index: 1080;
  pointer-events: none;
  --bs-tooltip-max-width: 320px;
  --bs-tooltip-bg: #000;
  --bs-tooltip-color: var(--vf-static-white);
  --bs-tooltip-border-radius: 6px;
  --bs-tooltip-padding-x: 12px;
  --bs-tooltip-padding-y: 8px;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-downloads-version {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-downloads-manual-head {
  padding: 12px 24px;
  border-bottom: 1px solid var(--vf-border);
  background: var(--vf-panel-blue);
}

.vf-downloads-version span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--vf-gray-500);
}

.vf-downloads-manual-copy {
  margin-bottom: 18px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-sm);
}

.vf-downloads-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--vf-border);
}

.vf-downloads-platform-card {
  padding: 12px;
  border-radius: 8px;
  background: var(--vf-gray-100);
}

.vf-downloads-platform-card h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--vf-gray-900);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-downloads-platform-card h3 span {
  font-size: var(--vf-font-size-20);
  font-weight: var(--vf-font-weight-regular);
}

.vf-downloads-platform-card h3 span:not(.material-symbols-outlined) {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vf-gray-700);
}

.vf-downloads-platform-card h3 small {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-regular);
  line-height: var(--vf-line-height-tight);
}

.vf-downloads-platform-card .vf-btn {
  padding: 4px 8px;
  border-color: var(--vf-blue-100);
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-medium);
}

.vf-downloads-platform-card .vf-btn > span {
  font-size: var(--vf-font-size-16);
}

.vf-downloads-arch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vf-downloads-command-title {
  margin-bottom: 8px;
  color: var(--vf-gray-900);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-downloads-pills {
  gap: 12px;
}

.vf-downloads-pills .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--vf-gray-700);
  background: transparent;
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-downloads-pills .nav-link.active {
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
}

.vf-downloads-steps {
  margin: 0 0 16px;
  padding-left: 20px;
}

.vf-downloads-steps li strong {
  font-weight: var(--vf-font-weight-semibold);
}

html[data-theme="dark"] .vf-downloads-os-tabs .nav-link.active,
html[data-theme="dark"] .vf-downloads-pills .nav-link.active,
html[data-theme="dark"] .vf-downloads-after {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-command-box button {
  color: var(--vf-gray-500);
}

html[data-theme="dark"] .vf-command-box {
  background: #101722;
}

/* Usage page */
.vf-usage-page {
  color: var(--vf-gray-900);
}

.vf-usage-license-card,
.vf-usage-summary-card {
  min-height: 181px;
}

.vf-usage-license-section {
  padding: 16px;
}

.vf-usage-allocation-section {
  padding: 16px;
  border-top: 1px solid var(--vf-border);
}

.vf-usage-label,
.vf-usage-stat span {
  margin-bottom: 8px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-usage-license-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 2px;
  background: var(--vf-gray-100);
}

.vf-usage-license-field code {
  flex: 1 1 auto;
  color: var(--vf-gray-900);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  overflow-wrap: anywhere;
}

.vf-usage-license-field button {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  color: var(--vf-gray-500);
  background: transparent;
  font-size: var(--vf-font-size-18);
}

.vf-usage-license-field button.is-copied {
  color: var(--vf-green-500);
}

.vf-usage-plan {
  margin: 4px 0 0;
  color: var(--vf-green-500);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-usage-allocation-value {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 0;
}

.vf-usage-allocation-value strong {
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-24);
  font-weight: var(--vf-font-weight-bold);
  line-height: var(--vf-line-height-lg);
}

.vf-usage-allocation-value span {
  color: var(--vf-gray-700);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-usage-summary-card {
  padding: 16px;
}

.vf-usage-summary-content {
  padding-top: 2px;
}

.vf-usage-total {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
}

.vf-usage-total strong {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-bold);
  line-height: var(--vf-line-height-tight);
}

.vf-usage-total span {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-usage-total span > span {
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-regular);
}

.vf-usage-stat span {
  display: block;
  margin-bottom: 2px;
  font-weight: var(--vf-font-weight-medium);
}

.vf-usage-stat strong {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-usage-status {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  gap: 5px;
  padding: 2px 9px;
  border-radius: 999px;
  color: var(--vf-green-500) !important;
  background: var(--vf-green-surface);
}

.vf-usage-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vf-green-500);
}

.vf-usage-ring {
  position: relative;
  width: 156px;
  aspect-ratio: 1;
  --vf-usage-circumference: 540.35;
}

.vf-usage-ring svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.vf-usage-ring circle {
  fill: none;
  stroke-width: 12;
}

.vf-usage-ring-track {
  stroke: var(--vf-blue-50);
}

.vf-usage-ring-progress {
  stroke: var(--vf-blue-500);
  stroke-linecap: round;
  stroke-dasharray: calc(
      var(--vf-usage-circumference) * var(--vf-usage-progress) / 100
    )
    var(--vf-usage-circumference);
  transition: stroke-dasharray 0.3s ease;
}

.vf-usage-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vf-usage-ring-label strong {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-28);
  font-weight: var(--vf-font-weight-bold);
  line-height: var(--vf-line-height-lg);
}

.vf-usage-ring-label span {
  margin-top: 0;
  color: var(--vf-green-500);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-usage-history-card {
  overflow: hidden;
}

.vf-usage-history-header {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 24px;
  background: var(--vf-panel-blue);
}

.vf-usage-history-header h2 {
  margin-bottom: 0;
  color: var(--vf-gray-900);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-18);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-sm);
}
.vf-usage-history-list {
  background: var(--vf-white-500);
}

.vf-usage-history-row {
  display: grid;
  min-height: 43px;
  grid-template-columns: 84px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
  border-top: 1px solid var(--vf-border);
}

.vf-usage-history-list .vf-usage-history-row:first-child {
  border-top: 0;
}

.vf-usage-history-month {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-usage-history-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--vf-gray-200);
}

.vf-usage-history-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--vf-blue-500);
}

.vf-usage-history-row strong {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  text-align: right;
}

html[data-theme="dark"] .vf-usage-allocation-value strong,
html[data-theme="dark"] .vf-usage-ring-label span {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-usage-ring-track {
  stroke: #33415a;
}

/* Billing Plan page */
.vf-billing-license-card,
.vf-billing-util-card {
  min-height: 128px;
  padding: 16px;
}

.vf-billing-label {
  margin-bottom: 8px;
  color: var(--vf-gray-600);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-billing-license-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 2px;
  background: var(--vf-gray-100);
}

.vf-billing-license-field code {
  flex: 1 1 auto;
  color: var(--vf-gray-900);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  overflow-wrap: anywhere;
}

.vf-billing-license-field button {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  color: var(--vf-gray-500);
  background: transparent;
  font-size: var(--vf-font-size-20);
}

.vf-billing-license-field button.is-copied {
  color: var(--vf-green-500);
}

.vf-billing-plan-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.vf-billing-plan-line > strong {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-billing-plan-line .vf-status-badge {
  min-width: 0;
  padding-inline: 8px;
  text-transform: none;
  border-radius: 20px;
}

.vf-billing-util-row,
.vf-billing-util-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vf-billing-util-row {
  margin-top: 14px;
  margin-bottom: 8px;
}

.vf-billing-util-row span,
.vf-billing-util-footer span {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-billing-util-footer span {
  font-size: var(--vf-font-size-13);
  color: var(--vf-gray-700);
}

.vf-billing-util-row strong,
.vf-billing-util-footer strong {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-billing-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--vf-gray-200);
}

.vf-billing-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--vf-blue-500);
}

.vf-billing-util-footer {
  margin-top: 14px;
}

.vf-billing-details-card {
  overflow: hidden;
}

.vf-billing-details-header {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  background: var(--vf-panel-blue);
}

.vf-billing-details-header h2 {
  margin-bottom: 0;
  color: var(--vf-gray-900);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-18);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-sm);
}

.vf-billing-details-header p {
  margin-bottom: 0;
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-billing-details-header strong {
  color: var(--vf-green-500);
  font-weight: var(--vf-font-weight-medium);
}

.vf-billing-details-body {
  padding: 12px 24px;
}

.vf-billing-detail-list {
  margin: 0;
}

.vf-billing-detail-list div {
  display: grid;
  min-height: 48px;
  grid-template-columns: minmax(150px, 0.9fr) minmax(180px, 1.2fr);
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--vf-border);
}

.vf-billing-detail-list div:first-child {
  border-top: 0;
}

.vf-billing-detail-list dt {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-regular);
  line-height: var(--vf-line-height-tight);
}

.vf-billing-detail-list dd {
  margin-bottom: 0;
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-billing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.vf-billing-actions .vf-btn {
  min-height: 40px;
  padding-inline: 14px;
}

.vf-billing-outline-btn {
  border: 1px solid var(--vf-gray-500);
  color: var(--vf-gray-700);
  background: transparent;
}

.vf-billing-outline-btn:hover,
.vf-billing-outline-btn:focus-visible {
  border-color: var(--vf-blue-500);
  color: var(--vf-blue-500);
}

.vf-billing-cancel-btn {
  color: var(--vf-red-500);
  background: transparent;
}

.vf-billing-cancel-btn:hover,
.vf-billing-cancel-btn:focus-visible {
  color: var(--vf-red-600);
}

.vf-billing-note {
  margin-bottom: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

html[data-theme="dark"] .vf-billing-details-header p {
  color: var(--vf-blue-100);
}

/* Profile page */
.vf-profile-page {
  color: var(--vf-gray-900);
}

.vf-profile-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.vf-profile-avatar {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #c7cbed;
  background: var(--vf-blue-500);
  font-size: var(--vf-font-size-24);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-sm);
}

.vf-profile-summary-info {
  min-width: 0;
  flex: 1 1 auto;
}

.vf-profile-summary-info h2 {
  margin-bottom: 4px;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-profile-summary-info p {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0;
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-profile-summary-info i {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
}

.vf-profile-detail-card {
  min-height: 340px;
  overflow: hidden;
}

.vf-profile-detail-body {
  padding: 16px 24px;
}

.vf-profile-detail-row {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--vf-border);
}

.vf-profile-detail-row:not(:first-child) {
  padding-top: 13px;
}

.vf-profile-detail-row:last-child {
  min-height: 50px;
  padding-bottom: 0;
  border-bottom: 0;
}

.vf-profile-detail-row > div,
.vf-profile-detail-row:not(.row) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vf-profile-detail-row span {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-profile-detail-row strong {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

/* Security page */

.vf-security-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px 16px;
}

.vf-security-field,
.vf-security-current {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.vf-security-field > span:first-child,
.vf-security-current span {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-security-current strong {
  color: var(--vf-gray-900);
  font-size: 15px;
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-security-password-wrap {
  position: relative;
  display: block;
}

.vf-security-password-wrap .vf-create-input {
  padding-right: 44px;
}

.vf-security-eye {
  position: absolute;
  top: 50%;
  right: 7px;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 0;
  color: var(--vf-gray-500);
  background: transparent;
  font-size: var(--vf-font-size-16);
}

.vf-security-eye:hover,
.vf-security-eye:focus-visible {
  color: var(--vf-blue-500);
}

.vf-security-help {
  margin: -9px 0 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-10);
  line-height: 16px;
}

.vf-security-submit {
  align-self: flex-start;
}

.vf-security-2fa-body > p {
  margin-bottom: 24px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-sm);
}

.vf-security-2fa-option {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.vf-security-2fa-icon {
  display: inline-flex;
  width: 40px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-20);
}

.vf-security-2fa-copy h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-security-2fa-copy p {
  max-width: 405px;
  margin-bottom: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-security-disabled-badge {
  display: inline-flex;
  min-height: 18px;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--vf-gray-500);
  background: var(--vf-foundation-gray-500);
  font-size: var(--vf-font-size-11);
  font-weight: var(--vf-font-weight-semibold);
  line-height: 14px;
  text-transform: uppercase;
}

.vf-security-disabled-badge.is-enabled {
  color: var(--vf-green-500);
  background: var(--vf-green-surface);
}

.vf-security-switch {
  margin: 0;
  padding-left: 0;
}

.vf-security-trusted-devices {
  grid-column: 2 / -1;
  justify-self: start;
  margin-top: 2px;
}

.vf-security-trusted-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 6px;
  border: 1px solid var(--vf-blue-100);
  border-radius: 8px;
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-11);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-security-trusted-btn:hover,
.vf-security-trusted-btn:focus-visible {
  border-color: var(--vf-blue-500);
  color: var(--vf-white-500);
  background: var(--vf-blue-500);
  outline: 0;
}

.vf-security-trusted-count {
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  padding-inline: 6px;
  border-radius: 999px;
  color: var(--vf-white-500);
  background: var(--vf-blue-500);
  font-size: var(--vf-font-size-11);
  font-weight: var(--vf-font-weight-bold);
  line-height: 1;
}

.vf-security-trusted-btn:hover .vf-security-trusted-count,
.vf-security-trusted-btn:focus-visible .vf-security-trusted-count {
  color: var(--vf-blue-500);
  background: var(--vf-white-500);
}

.vf-switch .form-check-input {
  width: 37px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  background-color: var(--vf-gray-200);
  border: 0;
}

.vf-switch .form-check-input:checked {
  background-color: var(--vf-blue-500);
}

.vf-switch-sm .form-check-input {
  width: 30px;
  height: 16px;
}

html[data-theme="dark"] .vf-security-2fa-icon {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-security-trusted-btn {
  border-color: var(--vf-blue-100);
  color: var(--vf-blue-100);
  background: var(--vf-blue-surface);
}

html[data-theme="dark"] .vf-security-trusted-btn:hover,
html[data-theme="dark"] .vf-security-trusted-btn:focus-visible {
  border-color: var(--vf-blue-100);
  color: var(--vf-white-500);
  background: var(--vf-blue-500);
}

html[data-theme="dark"] .vf-security-trusted-count {
  color: var(--vf-white-500);
  background: var(--vf-blue-100);
}

.vf-security-auth-dialog {
  width: min(calc(100% - 32px), 390px);
}

.vf-security-auth-content {
  border-radius: 10px;
}

.vf-security-auth-content .vf-modal-header {
  min-height: 59px;
  align-items: center;
  padding: 16px;
  background: var(--vf-panel-blue);
}

.vf-security-auth-content .vf-modal-title {
  margin-bottom: 0;
  font-size: var(--vf-font-size-18);
  line-height: var(--vf-line-height-sm);
}

.vf-security-auth-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  overflow: auto;
}

.vf-security-auth-step h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: var(--vf-font-family);
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-security-auth-step h3 span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--vf-static-white);
  background: var(--vf-blue-500);
  font-size: var(--vf-font-size-10);
  font-weight: var(--vf-font-weight-semibold);
  line-height: 1;
}

.vf-security-auth-step p {
  margin-bottom: 12px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-security-qr {
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 1px solid var(--vf-border);
  border-radius: 8px;
  background: var(--vf-white-500);
}

.vf-security-qr-grid {
  width: 126px;
  height: 126px;
  background: url("../images/qr.png") no-repeat;
  background-size: contain;
}

.vf-security-manual-code {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
}

.vf-security-manual-code > span:first-child {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-security-code-box {
  display: flex;
  height: 40px;
  align-items: center;
  border: 1px solid var(--vf-border);
  border-radius: 4px;
  background: var(--vf-gray-100);
}

.vf-security-code-box input {
  min-width: 0;
  flex: 1 1 auto;
  border: 0;
  padding: 0 10px;
  color: var(--vf-blue-500);
  background: transparent;
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-security-code-box button {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--vf-blue-500);
  background: transparent;
  font-size: var(--vf-font-size-16);
}

.vf-security-auth-verify {
  padding-top: 14px;
  border-top: 1px solid var(--vf-border);
}

.vf-security-code-inputs {
  display: grid;
  grid-template-columns: repeat(3, 40px) 16px repeat(3, 40px);
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin: 6px 0 10px;
}

.vf-security-code-inputs input {
  width: 40px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--vf-gray-300);
  border-radius: 5px;
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-20);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-sm);
  text-align: center;
}

.vf-security-code-inputs input:focus {
  border-color: var(--vf-blue-500);
  box-shadow: 0 0 0 3px rgba(10, 54, 157, 0.12);
}

.vf-security-code-inputs i {
  width: 8px;
  height: 1px;
  justify-self: center;
  background: var(--vf-gray-700);
}

.vf-security-code-note {
  margin-bottom: 0 !important;
  color: var(--vf-gray-500) !important;
  font-size: var(--vf-font-size-11) !important;
  font-style: italic;
  line-height: var(--vf-line-height-tight) !important;
  text-align: center;
}

.vf-security-auth-content .vf-modal-primary-btn {
  min-width: 130px;
}

html[data-theme="dark"] .vf-security-auth-step h3 {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-security-code-box input,
html[data-theme="dark"] .vf-security-code-box button,
html[data-theme="dark"] .vf-security-manual-code > span:first-child {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-security-qr {
  background: var(--vf-static-white);
}

html[data-theme="dark"] .vf-security-code-inputs input {
  border-color: var(--vf-gray-300);
  background: #243040;
}

html[data-theme="dark"] .vf-security-auth-content .vf-modal-footer {
  background: var(--vf-gray-100);
}

/* Support page */
.vf-support-page {
  color: var(--vf-gray-900);
}

.vf-support-help-card {
  display: grid;
  min-height: 131px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 16px 15px;
}

.vf-support-help-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-20);
  line-height: var(--vf-line-height-tight);
}

.vf-support-help-copy h2 {
  margin-bottom: 2px;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-support-help-copy p {
  max-width: 380px;
  margin-bottom: 8px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: 18px;
}

.vf-support-help-btn,
.vf-support-outline-btn {
  min-height: 34px;
  padding: 6px 12px;
  font-size: var(--vf-font-size-12);
  line-height: 18px;
}

.vf-support-outline-btn {
  border: 1px solid var(--vf-gray-900);
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
}

.vf-support-outline-btn:hover,
.vf-support-outline-btn:focus-visible {
  border-color: var(--vf-blue-500);
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
}

.vf-support-request-card {
  height: 584px;
  min-height: 584px;
  overflow: hidden;
}

.vf-support-request-header {
  display: flex;
  min-height: 69px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.vf-support-request-header p {
  margin: 2px 0 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: 18px;
}

.vf-support-form {
  position: relative;
  display: flex;
  height: 505px;
  min-height: 505px;
  flex-direction: column;
  padding: 24px 24px 86px;
}

.vf-support-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.vf-support-field > span {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-support-form .vf-create-input {
  min-height: 43px;
}

.vf-support-message {
  height: 231px;
  min-height: 231px;
  max-height: 231px;
  overflow-y: auto;
  resize: none;
}

.vf-support-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.vf-support-attach {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--vf-gray-700);
  cursor: pointer;
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-support-attach input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.vf-support-attach span.material-symbols-outlined {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-20);
}

.vf-support-attachment-list {
  position: absolute;
  right: 180px;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 78px;
  overflow-y: auto;
}

.vf-support-attachment-chip {
  display: inline-flex;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 10px;
  border-radius: 6px;
  color: var(--vf-gray-900);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-12);
  line-height: 18px;
}

.vf-support-attachment-name {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.vf-support-attachment-name .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-14);
}

.vf-support-attachment-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vf-support-attachment-chip small {
  flex: 0 0 auto;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-11);
  line-height: 16px;
}

.vf-support-attachment-remove {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: var(--vf-red-500);
  background: transparent;
  font-size: var(--vf-font-size-20);
}

.vf-support-attachment-remove:hover,
.vf-support-attachment-remove:focus-visible {
  color: var(--vf-red-600);
  background: var(--vf-red-50);
}

.vf-support-attachment-error {
  position: absolute;
  right: 24px;
  bottom: 6px;
  left: 24px;
  margin: 8px 0 0;
  color: var(--vf-red-500);
  font-size: var(--vf-font-size-12);
  line-height: 18px;
}

html[data-theme="dark"] .vf-support-help-icon {
  color: var(--vf-blue-100);
  background: rgba(111, 143, 208, 0.18);
}

html[data-theme="dark"] .vf-support-outline-btn {
  border-color: var(--vf-gray-300);
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
}

html[data-theme="dark"] .vf-support-attachment-name .material-symbols-outlined {
  color: var(--vf-blue-100);
}

/* Auth pages */
.vf-auth-body {
  overflow-x: hidden;
}

.vf-auth-body .vf-theme-toggle {
  top: 28px;
  right: 28px;
  position: fixed;
  z-index: 9;
  background: var(--vf-white-500);
  box-shadow: 0 6px 16px rgba(15, 20, 27, 0.08);
}

.vf-auth-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--vf-gray-900);
  background: var(--vf-page);
}

.vf-auth-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../images/auth-bg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: min(1328px, 120vw) auto;
}

.vf-auth-shell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px 16px;
}

.vf-auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 33px;
  color: var(--vf-gray-900);
  text-decoration: none;
  max-width: 239px;
}

.vf-auth-brand:hover,
.vf-auth-brand:focus-visible {
  color: var(--vf-gray-900);
}

.vf-auth-brand-mark {
  position: relative;
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-22);
}

.vf-auth-brand-mark::before,
.vf-auth-brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid var(--vf-blue-500);
  border-right-color: transparent;
  border-radius: 50%;
}

.vf-auth-brand-mark::after {
  inset: 0;
  transform: rotate(45deg);
  opacity: 0.55;
}

.vf-auth-brand-mark i {
  position: relative;
  z-index: 1;
}

.vf-auth-brand span:last-child {
  font-size: var(--vf-font-size-24);
  font-weight: var(--vf-font-weight-bold);
  line-height: var(--vf-line-height-md);
}

.vf-auth-card {
  width: min(100%, 450px);
  padding: 24px;
  border: 1px solid rgba(226, 227, 228, 0.85);
  border-radius: 24px;
  background: var(--vf-white-500);
  box-shadow: 0 0 37px 0 rgba(0, 0, 0, 0.1);
}

.vf-auth-card--signup {
  min-height: 584px;
}

.vf-auth-card--small {
  min-height: 371px;
}

.vf-auth-card--message {
  min-height: 407px;
}

.vf-auth-card--otp {
  min-height: 344px;
}

.vf-auth-card-header {
  margin-bottom: 32px;
}

.vf-auth-card-header--compact {
  margin-bottom: 21px;
}

.vf-auth-card-header--reset {
  margin-bottom: 20px;
}

.vf-auth-card-header--otp {
  margin-bottom: 21px;
}

.vf-auth-card-header h1 {
  margin-bottom: 12px;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-20);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-sm);
}

.vf-auth-title-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vf-auth-title-line span.material-symbols-outlined {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-24);
  font-weight: 400;
  line-height: 1;
}

.vf-auth-card-header p {
  margin-bottom: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  line-height: 18px;
}

.vf-auth-card-header p strong {
  font-weight: var(--vf-font-weight-medium);
}

.vf-auth-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.vf-auth-field > span:first-child {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-auth-plan-alert {
  display: flex;
  min-height: 39px;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
  padding: 9px 12px;
  border-radius: 5px;
  color: var(--vf-gray-900);
  background: rgba(226, 250, 240, 0.72);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-auth-plan-alert strong {
  color: var(--vf-green-500);
  font-weight: var(--vf-font-weight-semibold);
}

.vf-auth-plan-alert a {
  margin-left: auto;
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-11);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.vf-auth-plan-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--vf-green-500);
  font-size: var(--vf-font-size-20);
  font-weight: 400;
}

.vf-auth-message-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  color: var(--vf-green-500);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-20);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-sm);
}

.vf-auth-message-copy {
  margin-bottom: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-16);
  line-height: 24px;
}

.vf-auth-message-copy p {
  margin-bottom: 20px;
}

.vf-auth-message-copy p:last-child {
  margin-bottom: 0;
}

.vf-auth-message-copy strong {
  color: var(--vf-gray-900);
  font-weight: var(--vf-font-weight-medium);
}

.vf-auth-message-copy--compact {
  margin-bottom: 18px;
}

.vf-auth-divider {
  margin: 18px 0 18px;
  border-color: var(--vf-gray-300);
  opacity: 1;
}

.vf-auth-password-wrap {
  position: relative;
  display: block;
}

.vf-auth-password-wrap .vf-create-input {
  padding-right: 44px;
}

.vf-auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 0;
  color: var(--vf-gray-500);
  background: transparent;
  font-size: var(--vf-font-size-16);
}

.vf-auth-password-toggle:hover,
.vf-auth-password-toggle:focus-visible {
  color: var(--vf-blue-500);
}

.vf-auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -1px 0 20px;
}

.vf-auth-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-auth-check .form-check-input {
  width: 20px;
  height: 20px;
  margin: 0;
  border: 2px solid var(--vf-gray-600);
  border-radius: 4px;
  box-shadow: none;
}

.vf-auth-check .form-check-input:checked {
  border-color: var(--vf-blue-500);
  background-color: var(--vf-blue-500);
}

.vf-auth-check--terms {
  margin: -1px 0 20px;
}

.vf-auth-check--terms .form-check-label a {
  color: var(--vf-blue-500);
  text-decoration: none;
}

.vf-auth-check--terms .form-check-label a:hover,
.vf-auth-check--terms .form-check-label a:focus-visible {
  text-decoration: underline;
}

.vf-auth-link,
.vf-auth-footer-text a {
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-13);
  text-decoration: none;
}

.vf-auth-link:hover,
.vf-auth-link:focus-visible,
.vf-auth-footer-text a:hover,
.vf-auth-footer-text a:focus-visible {
  color: var(--vf-blue-500);
  text-decoration: underline;
}

.vf-auth-submit {
  width: 100%;
  margin-bottom: 16px;
  min-height: 44px;
}

.vf-auth-submit--otp {
  margin-bottom: 17px;
}

.vf-auth-code-field {
  min-width: 0;
  margin: 0 0 17px;
  padding: 0;
  border: 0;
}

.vf-auth-code-field legend {
  margin-bottom: 8px;
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-auth-code-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 48px)) 34px repeat(
      3,
      minmax(0, 48px)
    );
  align-items: center;
  gap: 10px;
}

.vf-auth-code-input {
  width: 48px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: var(--vf-gray-900);
  background: var(--vf-gray-050);
  box-shadow: none;
  font-size: var(--vf-font-size-24);
  font-weight: var(--vf-font-weight-semibold);
  line-height: 1;
  text-align: center;
}

.vf-auth-code-input::placeholder {
  color: var(--vf-gray-500);
  opacity: 1;
}

.vf-auth-code-input:focus {
  background: var(--vf-gray-050);
  box-shadow: 0 0 0 2px var(--vf-blue-500);
}

.vf-auth-code-separator {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-18);
  font-weight: var(--vf-font-weight-medium);
  line-height: 1;
  text-align: center;
}

.vf-auth-resend-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-auth-resend-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  color: var(--vf-blue-500);
  background: transparent;
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-regular);
  line-height: var(--vf-line-height-tight);
  text-decoration: none;
}

.vf-auth-resend-link:hover,
.vf-auth-resend-link:focus-visible {
  color: var(--vf-blue-500);
  text-decoration: underline;
  text-underline-offset: 2px;
  outline: 0;
}

.vf-auth-resend-timer {
  color: var(--vf-red-500);
  font-weight: var(--vf-font-weight-regular);
}

.vf-auth-social-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 4px 0 18px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-16);
  line-height: var(--vf-line-height-tight);
}

.vf-auth-social-divider::before,
.vf-auth-social-divider::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: var(--vf-gray-300);
}

.vf-auth-social-button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 17px;
  border: 1px solid var(--vf-gray-300);
  border-radius: 8px;
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-regular);
  line-height: var(--vf-line-height-tight);
}

.vf-auth-social-button:hover,
.vf-auth-social-button:focus-visible {
  border-color: var(--vf-blue-200);
  color: var(--vf-gray-900);
  background: var(--vf-blue-surface);
  outline: 0;
}

.vf-auth-google-mark {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.vf-auth-google-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.vf-auth-consent-text {
  margin: 0 0 14px;
  color: var(--vf-gray-700);
  line-height: 24px;
  text-align: center;
}

.vf-auth-consent-text a {
  color: var(--vf-blue-500);
  text-decoration: none;
}

.vf-auth-consent-text a:hover,
.vf-auth-consent-text a:focus-visible {
  text-decoration: underline;
}

.vf-auth-secondary-action {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: -8px 0 16px;
  border: 1px solid var(--vf-blue-500);
  color: var(--vf-blue-500);
  background: transparent;
}

.vf-auth-secondary-action:hover,
.vf-auth-secondary-action:focus-visible {
  border-color: var(--vf-blue-500);
  color: var(--vf-white-500);
  background: var(--vf-blue-500);
}

.vf-auth-footer-text {
  margin-bottom: 0;
  color: var(--vf-gray-700);
  line-height: var(--vf-line-height-tight);
  text-align: center;
}

html[data-theme="dark"] .vf-auth-page {
  background: var(--vf-page);
}

html[data-theme="dark"] .vf-auth-page::before {
  opacity: 0.38;
  filter: brightness(0.72) saturate(1.2);
}

html[data-theme="dark"] .vf-auth-brand-mark,
html[data-theme="dark"] .vf-auth-link,
html[data-theme="dark"] .vf-auth-footer-text a {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-auth-plan-alert {
  background: rgba(17, 80, 58, 0.48);
}

html[data-theme="dark"] .vf-auth-message-title {
  color: var(--vf-green-400);
}

html[data-theme="dark"] .vf-auth-message-copy strong {
  color: var(--vf-gray-900);
}

html[data-theme="dark"] .vf-auth-card-header p strong {
  color: var(--vf-gray-900);
}

html[data-theme="dark"] .vf-auth-code-input {
  color: var(--vf-gray-900);
  background: var(--vf-gray-100);
}

html[data-theme="dark"] .vf-auth-code-input:focus {
  background: var(--vf-gray-100);
}

html[data-theme="dark"] .vf-auth-resend-text,
html[data-theme="dark"] .vf-auth-resend-link {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-auth-social-divider {
  color: var(--vf-gray-700);
}

html[data-theme="dark"] .vf-auth-social-divider::before,
html[data-theme="dark"] .vf-auth-social-divider::after {
  background: var(--vf-border);
}

html[data-theme="dark"] .vf-auth-social-button {
  border-color: var(--vf-border);
  color: var(--vf-gray-900);
  background: var(--vf-card-bg);
}

html[data-theme="dark"] .vf-auth-social-button:hover,
html[data-theme="dark"] .vf-auth-social-button:focus-visible {
  border-color: var(--vf-blue-200);
  background: var(--vf-blue-surface);
}

html[data-theme="dark"] .vf-auth-consent-text {
  color: var(--vf-gray-700);
}

html[data-theme="dark"] .vf-auth-consent-text a {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-auth-plan-alert a,
html[data-theme="dark"] .vf-auth-check--terms .form-check-label a {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-auth-title-line i {
  color: var(--vf-gray-900);
}

html[data-theme="dark"] .vf-auth-secondary-action {
  border-color: var(--vf-blue-100);
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-auth-secondary-action:hover,
html[data-theme="dark"] .vf-auth-secondary-action:focus-visible {
  color: var(--vf-gray-900);
  background: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-auth-brand-mark::before,
html[data-theme="dark"] .vf-auth-brand-mark::after {
  border-color: var(--vf-blue-100);
  border-right-color: transparent;
}

html[data-theme="dark"] .vf-auth-password-toggle:hover,
html[data-theme="dark"] .vf-auth-password-toggle:focus-visible {
  color: var(--vf-blue-100);
}

@media (max-width: 575.98px) {
  .vf-auth-shell {
    justify-content: flex-start;
    padding-top: 72px;
  }

  .vf-auth-brand {
    margin-bottom: 24px;
  }

  .vf-auth-brand span:last-child {
    font-size: var(--vf-font-size-22);
  }

  .vf-auth-card {
    min-height: 0;
    padding: 24px 20px 22px;
    border-radius: 18px;
  }

  .vf-auth-card--signup {
    min-height: 0;
  }

  .vf-auth-card--small {
    min-height: 0;
  }

  .vf-auth-card--message {
    min-height: 0;
  }

  .vf-auth-card--otp {
    min-height: 0;
  }

  .vf-auth-card-header {
    margin-bottom: 24px;
  }

  .vf-auth-card-header--compact {
    margin-bottom: 20px;
  }

  .vf-auth-plan-alert {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .vf-auth-plan-alert a {
    margin-left: 26px;
  }

  .vf-auth-options {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .vf-auth-code-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) 18px repeat(
        3,
        minmax(0, 1fr)
      );
    gap: 6px;
  }

  .vf-auth-code-input {
    width: 100%;
    height: 56px;
  }
}

/* Billing Invoices page */
.vf-billing-invoices-page {
  color: var(--vf-gray-900);
}

.vf-invoice-plan-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.vf-invoice-plan-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 4px;
  color: var(--vf-static-white);
  background: var(--vf-blue-500);
  font-size: var(--vf-font-size-26, 26px);
}

.vf-invoice-plan-icon span {
  font-size: var(--vf-font-size-32);
}

.vf-invoice-plan-main {
  flex: 1 1 auto;
  min-width: 0;
}

.vf-invoice-plan-main h2 {
  margin-bottom: 0;
  color: var(--vf-gray-900);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-sm);
}

.vf-invoice-plan-main .vf-status-badge {
  min-width: 0;
  height: 24px;
  padding-inline: 8px;
  text-transform: none;
  border-radius: 20px;
}

.vf-invoice-plan-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-invoice-plan-meta strong {
  color: var(--vf-gray-900);
  font-weight: var(--vf-font-weight-medium);
  text-transform: none;
}

.vf-invoice-plan-meta > i {
  width: 1px;
  height: 16px;
  background: var(--vf-border);
}

.vf-invoice-next-date {
  flex: 0 0 auto;
  min-width: 160px;
  text-align: right;
}

.vf-invoice-next-date span {
  display: block;
  margin-bottom: 4px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-invoice-next-date strong {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-16);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-sm);
}

.vf-invoice-table-card {
  overflow: hidden;
}

.vf-invoice-search {
  width: min(240px, 100%);
}

.vf-invoice-table td strong {
  color: var(--vf-gray-700);
  font-weight: var(--vf-font-weight-semibold);
}

.vf-invoice-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.vf-invoice-actions button {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  color: var(--vf-blue-500);
  background: transparent;
  font-size: var(--vf-font-size-18);
}

.vf-invoice-actions button:first-child {
  color: var(--vf-gray-700);
}

html[data-theme="dark"] .vf-invoice-actions button,
html[data-theme="dark"] .vf-invoice-next-date strong {
  color: var(--vf-blue-100);
}

/* Team page */
.dashboard-container.vf-team-page {
  max-width: none;
  padding-inline: 24px;
  color: var(--vf-gray-900);
}

.vf-team-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.vf-team-seat-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 16px;
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-team-table-card {
  border-radius: 10px;
}

.vf-team-table-toolbar {
  min-height: 58px;
  padding: 10px 24px;
}

.vf-team-filters {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vf-team-filter-select {
  border-color: var(--vf-white-500);
}

.vf-team-audit-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--vf-blue-500);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
  text-decoration: none;
}

.vf-team-table td:nth-child(3) {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-regular);
}

.vf-team-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vf-team-user strong,
.vf-team-user small {
  display: block;
}

.vf-team-user strong {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
}

.vf-team-user small {
  margin-top: 3px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-team-avatar {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-18);
  font-weight: var(--vf-font-weight-medium);
  line-height: 1;
}

.vf-team-avatar-pending {
  border: 2px dashed var(--vf-gray-300);
  color: var(--vf-gray-300);
  background: var(--vf-gray-100);
  font-size: var(--vf-font-size-18);
}

.vf-team-role-pill {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 2px 8px;
  border-radius: 8px;
  color: var(--vf-blue-500);
  background: #edeef9;
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

.vf-team-role-pill-warning {
  color: var(--vf-orange-500);
  background: #fff0e3;
}

.vf-status-badge.pending {
  color: var(--vf-gray-500);
  background: var(--vf-gray-100);
}

.vf-status-badge.pending i {
  background: var(--vf-gray-500);
}

.vf-team-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
}

.vf-team-revoke-btn {
  padding: 6px 12px;
  border: 1px solid var(--vf-gray-500);
  color: var(--vf-gray-700);
  background: transparent;
}

.vf-team-revoke-btn:hover,
.vf-team-revoke-btn:focus-visible {
  border-color: var(--vf-red-500);
  color: var(--vf-red-500);
}

.vf-team-pending-row td,
.vf-team-pending-row .vf-team-user strong {
  color: var(--vf-gray-500);
}

.vf-team-pending-row .vf-team-user strong {
  font-style: italic;
  font-weight: var(--vf-font-weight-regular);
}

.vf-team-pending-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.vf-team-delete-btn {
  display: inline-flex;
  width: 28px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  color: var(--vf-red-500);
  background: transparent;
  font-size: var(--vf-font-size-18);
}

.vf-team-resend-btn {
  min-width: 76px;
  padding: 6px 14px;
  border: 1px solid var(--vf-blue-500);
  color: var(--vf-static-white);
  background: var(--vf-blue-500);
}

.vf-team-resend-btn:hover,
.vf-team-resend-btn:focus-visible {
  color: var(--vf-static-white);
  background: #082f88;
}

html[data-theme="dark"] .vf-team-seat-pill,
html[data-theme="dark"] .vf-team-audit-link,
html[data-theme="dark"] .vf-team-avatar {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-team-filter-select {
  border-color: var(--vf-border);
  background-color: var(--vf-white-500);
}

html[data-theme="dark"] .vf-team-role-pill {
  background: var(--vf-gray-100);
}

.vf-invite-member-dialog {
  width: min(calc(100% - 32px), 510px);
}

.vf-invite-member-content {
  overflow: hidden;
  border-radius: 10px;
}

.vf-invite-member-content .vf-modal-header {
  min-height: 59px;
  align-items: center;
  padding: 16px;
  background: var(--vf-panel-blue);
}

.vf-invite-member-content .vf-modal-title {
  margin-bottom: 0;
  font-size: var(--vf-font-size-18);
  line-height: var(--vf-line-height-sm);
}

.vf-invite-member-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 20px 16px;
  overflow-y: visible;
}

.vf-invite-field {
  margin: 0;
}

.vf-invite-label {
  display: block;
  margin: 0 0 5px;
  color: var(--vf-gray-600);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
}

.vf-invite-role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.vf-invite-choice {
  position: relative;
  display: flex;
  min-width: 0;
  cursor: pointer;
}

.vf-invite-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vf-invite-choice span:not(.material-symbols-outlined) {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--vf-border);
  border-radius: 8px;
  color: var(--vf-gray-700);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-medium);
  line-height: var(--vf-line-height-tight);
}

.vf-invite-choice strong {
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-regular);
}

.vf-invite-role-icon {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-24);
  line-height: 1;
}

.vf-invite-role-check {
  position: absolute;
  top: 5px;
  right: 5px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: var(--vf-font-size-16);
  line-height: 1;
  color: var(--vf-green-500);
}

.vf-invite-choice input:checked + span:not(.material-symbols-outlined) {
  border-color: var(--vf-blue-500);
  color: var(--vf-blue-500);
  background: var(--vf-blue-050);
}

.vf-invite-choice
  input:checked
  + span:not(.material-symbols-outlined)
  .vf-invite-role-icon {
  color: var(--vf-blue-500);
}

.vf-invite-choice input:checked + span > strong {
  font-weight: var(--vf-font-weight-medium);
}

.vf-invite-choice
  input:checked
  + :not(.material-symbols-outlined)
  .vf-invite-role-check {
  display: inline-flex;
}

.vf-invite-access-tabs {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  width: auto;
  border: 0;
  background: transparent;
}

.vf-invite-access-option {
  align-items: center;
  margin: 0;
}

.vf-invite-groups-panel {
  margin-top: 12px;
}

.vf-invite-group-box {
  overflow: hidden;
  border: 1px solid var(--vf-border);
  border-radius: 8px;
  background: var(--vf-white-500);
}

.vf-invite-group-search {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 0 12px;
  border-radius: 0;
  color: var(--vf-gray-500);
  background: var(--vf-white-500);
}

.vf-invite-group-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--vf-gray-700);
  background: transparent;
  font: inherit;
  font-size: var(--vf-font-size-14);
}

.vf-invite-group-search input::placeholder {
  color: var(--vf-gray-500);
}

.vf-invite-group-list {
  display: flex;
  max-height: 164px;
  flex-direction: column;
  overflow-y: auto;
  border-top: 1px solid var(--vf-border);
}

.vf-invite-group-list label {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 14px;
  border-bottom: 0;
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-14);
  line-height: var(--vf-line-height-tight);
  cursor: pointer;
}

.vf-invite-group-list label.is-selected {
  background: var(--vf-blue-surface);
}

.vf-invite-group-list .form-check-input {
  width: 14px;
  height: 14px;
  margin: 0;
  border-color: var(--vf-gray-300);
  border-radius: 3px;
}

.vf-invite-group-list .form-check-input:checked {
  border-color: var(--vf-blue-500);
  background-color: var(--vf-blue-500);
}

.vf-invite-group-list::-webkit-scrollbar {
  width: 7px;
}

.vf-invite-group-list::-webkit-scrollbar-track {
  background: var(--vf-gray-100);
}

.vf-invite-group-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #b3c2e5;
}

.vf-invite-groups-note {
  margin: 12px 0 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  line-height: var(--vf-line-height-tight);
}

html[data-theme="dark"] .vf-invite-choice span:not(.material-symbols-outlined),
html[data-theme="dark"] .vf-invite-group-box,
html[data-theme="dark"] .vf-invite-group-search {
  background: var(--vf-white-500);
}

html[data-theme="dark"] .vf-invite-member-content .vf-modal-footer {
  background: var(--vf-gray-100);
}

.vf-assign-modal-dialog {
  width: min(calc(100% - 32px), 780px);
}

.vf-assign-modal-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.vf-assign-toolbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.vf-assign-search {
  display: flex;
  width: min(100%, 444px);
  height: 36px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--vf-gray-500);
  background: var(--vf-gray-100);
}

.vf-assign-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--vf-gray-700);
  background: transparent;
  font: inherit;
  font-size: var(--vf-font-size-13);
}

.vf-assign-search input::placeholder {
  color: var(--vf-gray-500);
}

.vf-assign-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.vf-assign-summary strong {
  font-size: var(--vf-font-size-14);
  font-weight: var(--vf-font-weight-medium);
}

.vf-assign-selected-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 4px 4px 10px;
  border: 1px solid var(--vf-blue-100);
  border-radius: 24px;
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-14);
}

.vf-assign-selected-pill button {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  color: var(--vf-red-500);
  background: transparent;
  font-size: var(--vf-font-size-14);
}

.vf-assign-tabs {
  flex: 0 0 auto;
  gap: 10px;
  border-bottom: 1px solid var(--vf-border);
}

.vf-assign-tabs .nav-link {
  padding: 0px 12px 10px;
  border: 0;
  border-bottom: 4px solid transparent;
  border-radius: 0;
  color: var(--vf-gray-700);
  background: transparent;
  font-size: var(--vf-font-size-14);
}

.vf-assign-tabs .nav-link.active {
  color: var(--vf-blue-500);
  border-bottom-color: var(--vf-blue-500);
  font-weight: var(--vf-font-weight-semibold);
}

.vf-assign-table-wrap {
  flex: 1 1 auto;
  min-height: 220px;
  max-height: min(360px, calc(100vh - 340px));
  overflow: auto;
  scrollbar-gutter: stable;
}

.vf-assign-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.vf-assign-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 12px;
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  font-weight: var(--vf-font-weight-semibold);
  line-height: var(--vf-line-height-tight);
  text-transform: uppercase;
  white-space: nowrap;
}

.vf-assign-table th:first-child,
.vf-assign-table td:first-child {
  width: 36px;
  padding-right: 6px;
}

.vf-assign-table td {
  padding: 12px;
  border-top: 1px solid var(--vf-border);
  color: var(--vf-gray-700);
  line-height: var(--vf-line-height-tight);
  vertical-align: middle;
}

.vf-assign-table tr.is-selected {
  background: rgba(10, 54, 157, 0.05);
}

.vf-assign-table td strong,
.vf-assign-table td em {
  display: block;
}

.vf-assign-table td strong {
  color: var(--vf-gray-900);
  font-weight: var(--vf-font-weight-semibold);
}

.vf-assign-table td strong + span {
  font-size: var(--vf-font-size-13);
}

.vf-assign-table td em {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-11);
  font-style: normal;
}

.vf-assign-check {
  width: 18px;
  height: 18px;
  border-color: var(--vf-gray-300);
  border-radius: 2px;
}

.vf-assign-check:checked,
.vf-assign-check.form-check-input[type="checkbox"]:indeterminate {
  border-color: var(--vf-blue-500);
  background-color: var(--vf-blue-500);
}

.vf-assign-table .vf-status-badge {
  padding: 3px 9px;
  font-weight: var(--vf-font-weight-regular);
}

.vf-assign-group-pill {
  display: inline-flex !important;
  align-items: center;
  padding: 2px 8px;
  border-radius: 20px;
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-12);
}

.vf-assign-empty {
  color: var(--vf-gray-600);
  font-style: italic;
  font-size: var(--vf-font-size-12);
}

html[data-theme="dark"] .vf-assign-tabs .nav-link.active,
html[data-theme="dark"] .vf-assign-selected-pill,
html[data-theme="dark"] .vf-assign-group-pill {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-create-radio:has(input:checked),
html[data-theme="dark"] .vf-create-custom-actions button:first-child,
html[data-theme="dark"] .vf-create-category-group:nth-child(2) h4 span,
html[data-theme="dark"] .vf-create-threshold-ticks strong,
html[data-theme="dark"] .vf-create-threshold-ticks em {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-assign-table tr.is-selected {
  background: rgba(111, 143, 208, 0.08);
}

html[data-theme="dark"] .vf-groups-add-btn,
html[data-theme="dark"] .vf-group-item.active,
html[data-theme="dark"] .vf-groups-summary-grid i,
html[data-theme="dark"] .vf-groups-view-btn {
  color: var(--vf-blue-100);
}

@media (max-width: 1199.98px) {
  .vf-downloads-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-data-table-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .vf-team-table-toolbar {
    align-items: center;
    flex-direction: row;
  }

  .vf-scan-range-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .vf-scan-range-controls {
    width: 100%;
  }

  .vf-scan-range-controls .vf-select-wrap {
    flex: 1 1 0;
    min-width: 0;
  }

  .vf-scan-day-report-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .vf-scan-report-actions {
    width: 100%;
  }

  .vf-groups-table-toolbar {
    align-items: center;
    flex-direction: row;
  }

  .vf-overview-summary-actions {
    width: 100%;
  }

  .vf-overview-summary-card,
  .vf-overview-summary-card-wide,
  .vf-overview-export-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .vf-data-table-controls {
    flex-wrap: wrap;
  }
}

@media (max-width: 991.98px) {
  .vf-api-reference-column {
    display: none;
  }

  .vf-api-reference {
    position: static;
  }

  .vf-overview-threshold-card {
    min-height: 0;
  }

  .vf-overview-donut-wrap {
    padding: 28px 0 24px;
  }

  .vf-device-issue-grid,
  .vf-device-category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .vf-usage-summary-card {
    padding: 16px;
  }

  .vf-usage-history-header {
    padding-inline: 16px;
  }

  .vf-usage-history-row {
    grid-template-columns: 70px minmax(120px, 1fr) 44px;
    gap: 12px;
    padding-inline: 16px;
  }

  .vf-billing-details-header {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 16px;
  }

  .vf-billing-details-body {
    padding-inline: 16px;
  }

  .vf-billing-detail-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 12px;
  }

  .vf-billing-actions .vf-btn {
    width: 100%;
  }

  .vf-invoice-plan-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .vf-invoice-next-date {
    min-width: 0;
    text-align: left;
  }

  .vf-invoice-table-card .vf-data-table-toolbar {
    align-items: stretch;
    flex-direction: column;
    padding-inline: 16px;
  }

  .vf-invoice-search {
    width: 100%;
  }

  .vf-invoice-table-card .vf-data-table-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-inline: 16px;
  }

  .vf-invoice-table-card .vf-table-pagination {
    justify-content: flex-start;
  }

  .vf-profile-summary {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .vf-profile-stripe-btn {
    width: 100%;
  }

  .vf-profile-detail-body {
    padding-inline: 16px;
  }

  .vf-profile-detail-row > div + div {
    margin-top: 12px;
  }

  .vf-security-form,
  .vf-security-2fa-body {
    padding-inline: 16px;
  }

  .vf-security-submit {
    width: 100%;
  }

  .vf-security-2fa-option {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .vf-security-switch {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .vf-support-help-card {
    min-height: 0;
    padding: 16px;
  }

  .vf-support-request-card {
    height: auto;
    min-height: 0;
  }

  .vf-support-form {
    height: auto;
    min-height: 0;
    padding: 18px 16px 20px;
  }

  .vf-support-message {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
  }

  .vf-support-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .vf-support-attachment-list,
  .vf-support-attachment-error {
    position: static;
    max-height: none;
  }

  .vf-support-submit-btn {
    width: 100%;
  }

  .vf-team-title-row,
  .vf-team-table-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .vf-team-title-row {
    padding-right: 0;
  }

  .vf-team-invite-btn,
  .vf-team-audit-link {
    width: 100%;
  }

  .vf-team-filters,
  .vf-team-filter-select {
    width: 100%;
  }

  .vf-team-filters {
    align-items: stretch;
    flex-direction: column;
  }

  .vf-team-audit-link {
    justify-content: center;
  }

  .vf-downloads-os-tabs,
  .vf-downloads-pills {
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    padding-inline: 16px;
  }

  .vf-downloads-section-body {
    padding: 16px;
  }

  .vf-downloads-one-click-head {
    margin: 16px 16px 0;
    padding: 16px;
  }

  .vf-downloads-manual-head {
    padding-inline: 16px;
  }

  .vf-downloads-platform-grid {
    grid-template-columns: 1fr;
  }

  .vf-downloads-after {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }

  .vf-command-box {
    align-items: flex-start;
  }

  .vf-command-box code {
    font-size: var(--vf-font-size-12);
    line-height: var(--vf-line-height-tight);
  }

  .vf-command-box-tall {
    min-height: 0;
  }

  .vf-downloads-arch-row .vf-btn {
    width: 100%;
  }

  .vf-overview-container .page-title {
    font-size: var(--vf-font-size-20);
    line-height: var(--vf-line-height-md);
  }

  .vf-overview-container .page-subtitle {
    font-size: var(--vf-font-size-13);
    line-height: var(--vf-line-height-tight);
  }

  .vf-overview-container .vf-card-title {
    font-size: var(--vf-font-size-16);
    line-height: var(--vf-line-height-sm);
  }

  .vf-overview-summary-actions {
    width: 100%;
  }

  .vf-overview-summary-card,
  .vf-overview-summary-card-wide,
  .vf-overview-export-btn,
  .vf-device-details-scan-btn,
  .vf-devices-scan-btn,
  .vf-table-search {
    width: 100%;
  }

  .vf-groups-table-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .vf-groups-table-filters,
  .vf-groups-filter {
    width: 100%;
  }

  .vf-groups-summary-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .vf-groups-sidebar {
    min-height: 0;
    height: 0;
  }

  .vf-groups-sidebar-header .vf-groups-add-btn,
  .vf-groups-list {
    display: none;
  }

  .vf-groups-mobile-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--vf-border);
  }

  .vf-groups-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 16px;
  }

  .vf-groups-mobile-select,
  .vf-groups-mobile-select .form-select,
  .vf-groups-mobile-add-btn {
    width: 100%;
  }

  .vf-groups-mobile-select .form-select {
    min-height: 42px;
    border-color: var(--vf-border);
    border-radius: 8px;
    color: var(--vf-gray-900);
    background-color: var(--vf-white-500);
    font-size: var(--vf-font-size-14);
    font-weight: var(--vf-font-weight-medium);
  }

  .vf-groups-actions {
    width: 100%;
  }

  .vf-groups-assign-btn {
    flex: 1 1 auto;
  }

  .vf-modal-dialog {
    width: calc(100% - 24px);
    margin-inline: auto;
  }

  .vf-modal-header,
  .vf-modal-body,
  .vf-modal-footer {
    padding-inline: 14px;
  }

  .vf-delete-group-question {
    font-size: var(--vf-font-size-18);
    line-height: var(--vf-line-height-md);
  }

  .vf-delete-group-warning {
    padding: 14px;
  }

  .vf-delete-group-warning p {
    min-height: 0;
    padding: 16px;
    font-size: var(--vf-font-size-14);
    line-height: var(--vf-line-height-sm);
  }

  .vf-delete-group-divider {
    margin: 24px 0;
  }

  .vf-delete-group-devices-title {
    font-size: var(--vf-font-size-18);
  }

  .vf-delete-device-list span,
  .vf-delete-more-btn {
    min-height: 32px;
    padding: 6px 10px;
    font-size: var(--vf-font-size-12);
  }

  .vf-scan-range-summary,
  .vf-scan-range-controls,
  .vf-scan-heatmap-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .vf-scan-range-summary {
    gap: 12px;
    width: 100%;
  }

  .vf-scan-range-summary > div {
    width: 100%;
    min-width: 0;
  }

  .vf-scan-range-summary > div + div {
    padding: 12px 0 0;
    border-top: 1px solid var(--vf-border);
    border-left: 0;
  }

  .vf-scan-range-controls .vf-select-wrap,
  .vf-scan-range-controls [data-scan-custom-range-wrap] {
    width: 100%;
    min-width: 0;
  }

  .vf-scan-heatmap-header {
    padding-inline: 0;
  }

  .vf-scan-report-actions,
  .vf-scan-report-actions .vf-btn,
  .vf-scan-search,
  .vf-scan-sort,
  .vf-scan-export-btn {
    width: 100%;
  }

  .vf-api-overview-grid {
    grid-template-columns: 1fr;
  }

  .vf-api-accordion-item .accordion-button {
    align-items: flex-start;
    padding: 14px;
    font-size: var(--vf-font-size-14);
  }

  .vf-api-accordion-heading {
    align-items: flex-start;
  }

  .vf-api-accordion-heading em {
    width: 48px;
    height: 48px;
  }

  .vf-api-accordion-heading strong {
    font-size: var(--vf-font-size-18);
    line-height: var(--vf-line-height-sm);
  }

  .vf-api-accordion-heading small {
    font-size: var(--vf-font-size-12);
  }

  .vf-assign-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .vf-assign-search,
  .vf-assign-summary {
    width: 100%;
  }

  .vf-assign-summary {
    justify-content: space-between;
  }

  .vf-create-group-body {
    max-height: 70vh;
  }

  .vf-create-mode-row {
    gap: 14px;
  }

  .vf-create-preset-tabs {
    flex-direction: column;
  }

  .vf-create-preset-tabs .nav-item,
  .vf-create-preset-tabs .nav-link {
    width: 100%;
  }

  .vf-create-category-grid,
  .vf-create-category-grid-five {
    grid-template-columns: 1fr;
  }

  .vf-create-threshold-ticks {
    font-size: var(--vf-font-size-10);
  }

  .vf-overview-summary-card,
  .vf-overview-summary-card-wide,
  .vf-overview-export-btn {
    flex: 0 0 100%;
  }

  .vf-overview-filter-bar {
    grid-template-columns: 1fr;
    height: auto;
    padding: 16px;
  }

  .vf-table-profile-tabs {
    width: 100%;
    flex-direction: column;
  }

  .vf-table-profile-tabs .nav-item,
  .vf-table-profile-tab,
  .vf-table-profile-tab-wide {
    width: 100%;
    min-width: 0;
  }

  .vf-overview-effect-meta {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .vf-data-table-footer {
    grid-template-columns: 1fr;
    padding-block: 16px;
  }

  .vf-table-pagination {
    justify-content: flex-start;
  }
}

/* Notifications page table overrides follow the shared table system. */
.vf-data-table.vf-notification-rules-table {
  min-width: 720px;
}

.vf-notification-rules-card .vf-data-table-toolbar {
  min-height: 70px;
  align-items: center;
  flex-direction: row;
}

@media (max-width: 767.98px) {
  .vf-notification-rules-card .vf-data-table-toolbar {
    align-items: stretch;
    flex-direction: column;
    padding-block: 14px;
  }
}

/* Notifications page modals */
.vf-notification-rule-dialog {
  width: min(calc(100% - 24px), 450px);
}

.vf-notification-rule-content .vf-modal-header {
  min-height: 59px;
  align-items: center;
  padding: 16px;
}

.vf-notification-rule-content .vf-modal-title {
  font-size: var(--vf-font-size-18);
  line-height: var(--vf-line-height-sm);
}

.vf-notification-rule-body {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  gap: 22px;
  padding: 18px 16px 20px;
}

.vf-notification-rule-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.vf-notification-rule-field > span:first-child {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-11);
  font-weight: var(--vf-font-weight-medium);
  line-height: 16px;
  text-transform: uppercase;
}

.vf-notification-rule-field .vf-select {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background-color: var(--vf-gray-100);
  font-size: var(--vf-font-size-13);
}

.vf-notification-threshold-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vf-notification-threshold-control .vf-create-input {
  width: 64px;
  padding-inline: 16px 8px;
  font-size: var(--vf-font-size-13);
}

.vf-notification-threshold-control .vf-create-input::-webkit-inner-spin-button,
.vf-notification-threshold-control .vf-create-input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.vf-notification-threshold-control i {
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-13);
  font-style: normal;
}

.vf-notification-rule-content .vf-modal-footer {
  min-height: 64px;
  padding: 11px 16px;
}

.vf-delete-rule-modal-dialog {
  width: min(calc(100% - 24px), 560px);
}

.vf-delete-rule-modal-dialog .vf-delete-group-body {
  padding-bottom: 24px;
}

.vf-delete-rule-modal-dialog .vf-delete-group-warning p {
  min-height: 0;
}

html[data-theme="dark"] .vf-notification-rule-field .vf-select {
  border: 1px solid var(--vf-gray-300);
  color: var(--vf-gray-900);
  background-color: #243040;
}

@media (max-width: 575.98px) {
  .vf-notification-rule-content .vf-modal-footer,
  .vf-delete-rule-modal-dialog .vf-modal-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .vf-notification-rule-content .vf-modal-footer .vf-btn,
  .vf-delete-rule-modal-dialog .vf-modal-footer .vf-btn {
    width: 100%;
  }
}

/* Activity Logs page */
.vf-logs-page {
  color: var(--vf-gray-900);
}

.vf-logs-card {
  overflow: hidden;
}

.vf-logs-card .vf-logs-toolbar {
  min-height: 64px;
  align-items: center;
  flex-direction: row;
}

.vf-logs-toolbar-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vf-logs-toolbar-btn {
  min-height: 38px;
  gap: 8px;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-medium);
}

.vf-logs-toolbar-btn:hover,
.vf-logs-toolbar-btn:focus-visible,
.vf-logs-toolbar-btn.show {
  color: var(--vf-blue-500);
  background: var(--vf-white-500);
}

.vf-logs-toolbar-btn.dropdown-toggle::after {
  display: none;
}

.vf-logs-range-select {
  width: 148px;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-medium);
}

.vf-logs-filter-menu {
  padding: 6px;
  border-color: var(--vf-border);
  color: var(--vf-gray-900);
  background: var(--vf-white-500);
}

.vf-logs-filter-menu .dropdown-item {
  border-radius: 4px !important;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  border: 0;
}

.vf-logs-filter-menu .dropdown-item:hover,
.vf-logs-filter-menu .dropdown-item:focus,
.vf-logs-filter-menu .dropdown-item.active {
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
}

.vf-data-table.vf-logs-table {
  min-width: 760px;
  table-layout: fixed;
}

.vf-log-action {
  font-weight: var(--vf-font-weight-regular);
}

.vf-log-action.success {
  color: var(--vf-green-500);
}

.vf-log-action.access {
  color: var(--vf-blue-500);
}

.vf-log-action.failed {
  color: var(--vf-red-500);
}

html[data-theme="dark"] .vf-logs-toolbar-btn:hover,
html[data-theme="dark"] .vf-logs-toolbar-btn:focus-visible,
html[data-theme="dark"] .vf-logs-toolbar-btn.show,
html[data-theme="dark"] .vf-log-action.access {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-logs-filter-menu .dropdown-item:hover,
html[data-theme="dark"] .vf-logs-filter-menu .dropdown-item:focus,
html[data-theme="dark"] .vf-logs-filter-menu .dropdown-item.active {
  color: var(--vf-blue-100);
}

@media (max-width: 767.98px) {
  .vf-logs-card .vf-logs-toolbar {
    align-items: stretch;
    flex-direction: column;
    padding-block: 14px;
  }

  .vf-logs-toolbar-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .vf-logs-toolbar-group .dropdown,
  .vf-logs-toolbar-group .vf-logs-toolbar-btn,
  .vf-logs-range-select,
  .vf-logs-export-btn {
    width: 100%;
  }
}

@media (max-width: 479.98px) {
  .vf-logs-toolbar-group {
    grid-template-columns: 1fr;
  }
}

/* Upgrade Plan modal */

.vf-upgrade-plan-dialog {
  width: min(calc(100% - 24px), 1150px);
  margin-block: 12px;
}

.vf-upgrade-plan-content {
  height: calc(100vh - 24px);
  max-height: calc(100vh - 24px);
  border-radius: 10px;
}

.vf-upgrade-plan-header {
  min-height: 82px;
  align-items: flex-start;
  flex: 0 0 auto;
  padding: 18px 20px;
}

.vf-upgrade-plan-body {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 24px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 18px 16px;
  scrollbar-color: var(--vf-gray-300) transparent;
  scrollbar-width: thin;
}

.vf-upgrade-plan-body::-webkit-scrollbar {
  width: 8px;
}

.vf-upgrade-plan-body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--vf-gray-300);
}

.vf-upgrade-billing-toggle {
  display: grid;
  width: 300px;
  min-height: 44px;
  grid-template-columns: 1fr 1.35fr;
  align-self: center;
  padding: 5px;
  border-radius: 8px;
  background: var(--vf-blue-surface);
}

.vf-upgrade-billing-toggle button {
  border: 0;
  border-radius: 6px;
  color: var(--vf-gray-700);
  background: transparent;
  font: inherit;
  font-size: var(--vf-font-size-14);
}

.vf-upgrade-billing-toggle button.active {
  color: var(--vf-blue-500);
  background: var(--vf-white-500);
  box-shadow: 0 1px 4px rgba(15, 20, 27, 0.08);
}

.vf-upgrade-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.vf-upgrade-plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 350px;
  flex-direction: column;
  padding: 24px 16px 16px;
  border: 1px solid var(--vf-border);
  border-radius: 12px;
  background: var(--vf-white-500);
}

.vf-upgrade-plan-card.is-selected {
  border: 2px solid var(--vf-blue-500);
  padding: 21px 15px 15px;
  background: color-mix(
    in srgb,
    var(--vf-blue-surface) 35%,
    var(--vf-white-500)
  );
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
}

.vf-upgrade-plan-label {
  display: inline-flex;
  align-self: flex-start;
  min-height: 24px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--vf-blue-500);
  background: var(--vf-blue-surface);
  font-size: var(--vf-font-size-12);
  line-height: 16px;
  text-transform: uppercase;
}

.vf-upgrade-plan-label.is-primary {
  color: var(--vf-static-white);
  background: var(--vf-blue-500);
}

.vf-upgrade-plan-ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 3px 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: var(--vf-static-white);
  background: var(--vf-green-500);
  font-size: var(--vf-font-size-10);
  line-height: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.vf-upgrade-plan-ribbon.is-dark {
  background: var(--vf-gray-700);
}

.vf-upgrade-plan-card h3 {
  display: flex;
  align-items: baseline;
  margin: 18px 0 2px;
  font-family: var(--vf-font-family);
}

.vf-upgrade-plan-card h3 strong {
  font-size: var(--vf-font-size-28);
  line-height: 38px;
  font-weight: var(--vf-font-weight-bold);
}

.vf-upgrade-plan-card h3 small {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-20);
  font-weight: var(--vf-font-weight-regular);
}

.vf-upgrade-plan-card > p {
  margin-bottom: 24px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
}

.vf-upgrade-plan-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.vf-upgrade-plan-card li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 6px;
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-13);
  line-height: var(--vf-line-height-tight);
}

.vf-upgrade-plan-card li > span {
  color: var(--vf-green-500);
  font-size: var(--vf-font-size-16);
}

.vf-upgrade-plan-card.is-current li > span {
  color: var(--vf-blue-500);
}

.vf-upgrade-card-btn {
  width: 100%;
  margin-top: auto;
  border: 1px solid var(--vf-blue-500);
  font-size: var(--vf-font-size-13);
  color: var(--vf-blue-500);
  background: transparent;
}

.vf-upgrade-card-btn:hover,
.vf-upgrade-card-btn:focus-visible {
  border-color: var(--vf-blue-500);
  color: var(--vf-static-white);
  background: var(--vf-blue-500);
}

.vf-upgrade-card-btn:disabled {
  border-color: var(--vf-blue-100);
  color: var(--vf-blue-100);
  background: var(--vf-blue-surface);
  opacity: 0.8;
}

.vf-upgrade-comparison .accordion-item {
  overflow: hidden;
  border: 1px solid var(--vf-border);
  border-radius: 10px;
  background: var(--vf-white-500);
}

.vf-upgrade-comparison .accordion-button {
  padding: 12px 24px;
  color: var(--vf-gray-900);
  background: var(--vf-panel-blue);
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-18);
  font-weight: var(--vf-font-weight-semibold);
  box-shadow: none;
}

.vf-upgrade-comparison .accordion-button:not(.collapsed) {
  color: var(--vf-gray-900);
  background: var(--vf-panel-blue);
  box-shadow: none;
}

.vf-upgrade-comparison .accordion-body {
  padding: 0;
}

.vf-upgrade-table-wrap {
  overflow-x: auto;
}

.vf-upgrade-feature-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  table-layout: fixed;
}

.vf-upgrade-feature-table th,
.vf-upgrade-feature-table td {
  padding: 8px 24px;
  border-top: 0.8px solid var(--vf-border);
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-medium);
  text-align: center;
}

.vf-upgrade-feature-table tr:nth-of-type(odd) > td {
  background-color: rgba(0, 0, 0, 0.02);
}

.vf-upgrade-feature-table th {
  color: var(--vf-gray-900);
  font-weight: var(--vf-font-weight-semibold);
  text-transform: uppercase;
}

.vf-upgrade-feature-table th:first-child,
.vf-upgrade-feature-table td:first-child {
  width: 48%;
  color: var(--vf-gray-900);
  text-align: left;
}

.vf-upgrade-feature-table td.yes,
.vf-upgrade-feature-table td.no {
  font-size: 0;
}

.vf-upgrade-feature-table td.yes::before {
  content: "check_circle";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  color: var(--vf-green-500);
  font-variation-settings:
    "FILL" 1,
    "wght" 600,
    "GRAD" 0,
    "opsz" 20;
}

.vf-upgrade-feature-table td.no::before {
  content: "close_small";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  color: var(--vf-red-500);
  font-variation-settings:
    "FILL" 1,
    "wght" 600,
    "GRAD" 0,
    "opsz" 20;
}

.vf-upgrade-target {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
  border-radius: 10px;
  background: var(--vf-panel-blue);
}

.vf-upgrade-target-copy {
  align-self: center;
  padding-right: 12px;
}

.vf-upgrade-target-copy h3 {
  margin-bottom: 8px;
  font-family: var(--vf-font-family);
  font-size: var(--vf-font-size-18);
  line-height: var(--vf-line-height-sm);
  font-weight: var(--vf-font-weight-semibold);
}

.vf-upgrade-target-copy h3 strong {
  color: var(--vf-blue-500);
  font-weight: var(--vf-font-weight-semibold);
}

.vf-upgrade-target-copy p {
  margin: 0;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
}

.vf-upgrade-metric {
  min-height: 132px;
  padding: 16px;
  border-radius: 12px;
  background: var(--vf-white-500);
}

.vf-upgrade-metric > span {
  display: block;
  margin-bottom: 10px;
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-12);
  font-weight: var(--vf-font-weight-semibold);
  text-transform: uppercase;
}

.vf-upgrade-metric > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--vf-gray-900);
  font-size: var(--vf-font-size-24);
  line-height: var(--vf-line-height-md);
}

.vf-upgrade-metric > strong small {
  color: var(--vf-gray-700);
  font-size: var(--vf-font-size-13);
  font-weight: var(--vf-font-weight-regular);
}

.vf-upgrade-metric > div {
  height: 6px;
  margin-bottom: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--vf-gray-200);
}

.vf-upgrade-metric > div i {
  display: block;
  width: 90%;
  height: 100%;
  background: var(--vf-blue-500);
}

.vf-upgrade-metric p {
  margin: 0;
  color: var(--vf-gray-600);
  font-size: var(--vf-font-size-10);
  line-height: 16px;
}

.vf-upgrade-metric:first-of-type p {
  color: var(--vf-red-500);
}

.vf-upgrade-plan-footer {
  flex: 0 0 auto;
}

html[data-theme="dark"] .vf-upgrade-billing-toggle button.active,
html[data-theme="dark"] .vf-upgrade-plan-label,
html[data-theme="dark"] .vf-upgrade-target-copy h3 strong {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-upgrade-plan-card.is-current li i,
html[data-theme="dark"] .vf-upgrade-card-btn {
  color: var(--vf-blue-100);
}

html[data-theme="dark"] .vf-upgrade-card-btn {
  border-color: var(--vf-blue-100);
}

@media (max-width: 991.98px) {
  .vf-upgrade-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .vf-upgrade-target {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .vf-upgrade-plan-dialog {
    width: calc(100% - 12px);
    margin-block: 6px;
  }

  .vf-upgrade-plan-content {
    height: calc(100vh - 12px);
    max-height: calc(100vh - 12px);
  }

  .vf-upgrade-plan-header {
    min-height: 76px;
    padding: 14px;
  }

  .vf-upgrade-plan-body {
    padding: 16px 12px;
  }

  .vf-upgrade-billing-toggle {
    width: 100%;
  }

  .vf-upgrade-plan-grid,
  .vf-upgrade-target {
    grid-template-columns: 1fr;
  }

  .vf-upgrade-plan-card {
    min-height: 360px;
  }

  .vf-upgrade-comparison .accordion-button {
    padding-inline: 16px;
    font-size: var(--vf-font-size-16);
  }

  .vf-upgrade-table-wrap {
    overflow-x: hidden;
  }

  .vf-upgrade-feature-table {
    min-width: 0;
    table-layout: fixed;
  }

  .vf-upgrade-feature-table th,
  .vf-upgrade-feature-table td {
    height: auto;
    min-height: 44px;
    padding: 10px 3px;
    font-size: var(--vf-font-size-10);
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .vf-upgrade-feature-table th:first-child,
  .vf-upgrade-feature-table td:first-child {
    width: 52%;
    padding-left: 12px;
    padding-right: 8px;
    font-size: var(--vf-font-size-11);
  }

  .vf-upgrade-feature-table th:not(:first-child) {
    width: 12%;
    font-size: 0;
  }

  .vf-upgrade-feature-table th:not(:first-child)::after {
    content: attr(data-short-label);
    font-size: 9px;
  }

  .vf-upgrade-feature-table td.yes::before {
    width: 16px;
    height: 16px;
    font-size: var(--vf-font-size-12);
  }

  .vf-upgrade-feature-table td.no::before {
    font-size: var(--vf-font-size-16);
  }

  .vf-upgrade-plan-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-inline: 12px;
  }

  .vf-upgrade-plan-footer .vf-btn {
    width: 100%;
  }
}
