/* Dashboard Base Styles - Shared across dashboard pages */

html {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  background: var(--bs-tertiary-bg);
}

body {
  min-height: 100%;
  height: auto;
  margin: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: var(--bs-tertiary-bg);
}

html.pc-viewport-managed-document,
html.pc-viewport-managed-document body,
body.pc-viewport-managed-document {
  height: 100%;
  min-height: 0;
  overflow: hidden !important;
}

html.pc-viewport-managed-document body .pc-main,
body.pc-viewport-managed-document .pc-main {
  height: calc(100vh - var(--pc-private-banner-height, 0px));
  min-height: 0;
  overflow: hidden !important;
}

html.pc-viewport-managed-document body #ajax-content,
body.pc-viewport-managed-document #ajax-content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden !important;
}

html.pc-viewport-managed-document body #content-container,
html.pc-viewport-managed-document body .page-copy,
html.pc-viewport-managed-document body .xrm-editable-html,
html.pc-viewport-managed-document body .xrm-attribute,
html.pc-viewport-managed-document body .xrm-attribute-value,
body.pc-viewport-managed-document #content-container,
body.pc-viewport-managed-document .page-copy,
body.pc-viewport-managed-document .xrm-editable-html,
body.pc-viewport-managed-document .xrm-attribute,
body.pc-viewport-managed-document .xrm-attribute-value {
  flex: 1 1 auto;
  min-height: 0 !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden !important;
}

html.pc-viewport-managed-document body .pc-dashboard-app.is-viewport-managed,
body.pc-viewport-managed-document .pc-dashboard-app.is-viewport-managed {
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

body > header,
body > nav,
body > footer,
body > #header,
body > #navbar,
body > #navbarMain,
body > #pageHeader,
body > #pageHeading,
body > #site-header,
body > #site-footer,
body > #footer,
body > .navbar,
body > .navbar.navbar-default,
body > .navbar.navbar-inverse,
body > .navbar.navbar-expand-lg,
body > .navbar.navbar-dark,
body > .navbar.navbar-light,
body > .site-header,
body > .portal-header,
body > .page-header,
body > .page-heading,
body > .header,
body > .header-panel,
body > .banner,
body > .alert,
body > .alert-info,
.navbar,
.navbar-toggler,
.navbar-toggle,
.navbar-collapse,
.navbar-header,
.menu-bar,
.menu-bar-container,
.mobile-header,
.portal-header,
.portal-nav,
.site-header,
.header-nav,
.header-title,
.header-logo,
.header-menu,
.header-toggle,
.page-header,
.page-heading,
footer.footer,
.notification,
.site-notification,
.portal-notification,
.page-notification,
.notification .alert,
.site-notification .alert,
.portal-notification .alert,
.page-notification .alert {
  display: none !important;
}

.pc-dashboard-app {
  --pc-private-banner-height: 0px;
  --pc-sidebar-width: 260px;
  display: flex;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--bs-tertiary-bg);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: var(--bs-body-color);
}

.pc-dashboard-app h1,
.pc-dashboard-app h2,
.pc-dashboard-app h3,
.pc-dashboard-app h4,
.pc-dashboard-app h5,
.pc-dashboard-app h6 {
  font-family: inherit;
  color: var(--bs-body-color);
}

.pc-dashboard-app p,
.pc-dashboard-app label,
.pc-dashboard-app input,
.pc-dashboard-app select,
.pc-dashboard-app textarea,
.pc-dashboard-app button {
  font-family: inherit;
}

/* Sidebar */
.pc-sidebar {
  width: var(--pc-sidebar-width) !important;
  background: var(--bs-body-bg);
  border-right: 1px solid var(--bs-border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--pc-private-banner-height, 0px);
  left: 0;
  bottom: 0;
  height: calc(100vh - var(--pc-private-banner-height, 0px));
  min-height: calc(100vh - var(--pc-private-banner-height, 0px));
  overflow: visible;
  box-sizing: border-box;
  z-index: 1100;
}

.pc-sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--bs-border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.pc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.pc-logo-icon {
  width: 32px;
  height: 32px;
  fill: var(--bs-primary);
}

.pc-logo-text {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--bs-body-color);
  line-height: 1.15;
  max-width: 11ch;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: keep-all;
}

.pc-nav {
  flex: 1;
  min-height: 0;
  padding: 16px 12px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

.pc-nav::-webkit-scrollbar:horizontal {
  height: 0;
}

.pc-nav-section {
  margin-bottom: 24px;
}

.pc-nav-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bs-secondary-color);
  padding: 0 12px;
  margin-bottom: 8px;
}

.pc-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 4px;
  border-radius: 8px;
  color: var(--bs-secondary-color);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.pc-nav-link:hover {
  background: var(--bs-tertiary-bg);
  color: var(--bs-body-color);
}

.pc-nav-link.active {
  background: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
}

.pc-nav-link.is-pending {
  background: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
  box-shadow: 0 0 0 1px rgba(var(--bs-primary-rgb), 0.12);
}

.pc-nav-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.pc-user-card {
  padding: 16px;
  margin-top: auto;
  margin-right: 16px;
  margin-bottom: 16px;
  margin-left: 16px;
  width: calc(100% - 32px);
  box-sizing: border-box;
  min-width: 0;
  background: var(--bs-tertiary-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  flex-shrink: 0;
}

.pc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bs-primary);
  color: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

.pc-user-info {
  min-width: 0;
}

.pc-user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-body-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-user-role {
  font-size: 12px;
  color: var(--bs-secondary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Main Content */
.pc-main {
  flex: 1 1 calc(100% - var(--pc-sidebar-width)) !important;
  width: calc(100% - var(--pc-sidebar-width)) !important;
  max-width: calc(100% - var(--pc-sidebar-width)) !important;
  margin-left: var(--pc-sidebar-width) !important;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--pc-private-banner-height, 0px));
  min-width: 0;
  box-sizing: border-box;
  overflow-x: clip;
  background: var(--bs-tertiary-bg);
}

.pc-dashboard-app.is-viewport-managed {
  height: calc(100vh - var(--pc-private-banner-height, 0px));
  min-height: 0;
  overflow: hidden;
}

.pc-dashboard-app.is-viewport-managed .pc-main {
  height: calc(100vh - var(--pc-private-banner-height, 0px));
  min-height: 0;
  overflow: hidden;
}

.pc-dashboard-app #ajax-content {
  min-height: calc(100vh - var(--pc-private-banner-height, 0px));
  transform-origin: top center;
  transition: opacity 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

.pc-dashboard-app.is-viewport-managed #ajax-content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pc-dashboard-app.is-nav-pending #ajax-content {
  opacity: 0.7;
  transform: translateY(4px);
  filter: saturate(0.92);
}

/* Top Header */
.pc-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 32px;
  background: var(--bs-body-bg);
  border-bottom: 1px solid var(--bs-border-color);
  position: sticky;
  top: var(--pc-private-banner-height, 0px);
  z-index: 100;
  min-width: 0;
  overflow: visible;
}

.pc-dashboard-app.is-nav-pending .pc-top-header::after {
  content: '';
  position: absolute;
  left: -30%;
  bottom: 0;
  width: 30%;
  height: 2px;
  border-radius: 999px;
  background: var(--bs-primary);
  animation: pc-nav-progress 1s ease-in-out infinite;
}

.pc-search {
  position: relative;
  width: 400px;
  min-width: 0;
  max-width: 100%;
  flex: 1 1 360px;
}

.pc-page-heading-group {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.pc-page-heading-inline {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.pc-page-title {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bs-body-color);
}

.pc-page-subtitle {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bs-secondary-color);
}

.pc-page-back-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--bs-border-color);
  border-radius: 12px;
  background: var(--bs-body-bg);
  color: var(--bs-secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.pc-page-back-link:hover,
.pc-page-back-link:focus-visible {
  background: var(--bs-tertiary-bg);
  color: var(--bs-body-color);
  outline: none;
}

.pc-page-back-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.pc-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: var(--bs-gray-500);
}

.pc-search-input {
  width: 100%;
  padding: 12px 16px 12px 48px;
  border: 1px solid var(--bs-border-color);
  border-radius: 12px;
  font-size: 15px;
  background: var(--bs-tertiary-bg);
  transition: all 0.2s ease;
}

.pc-search-input:focus {
  outline: none;
  border-color: var(--bs-primary);
  background: var(--bs-body-bg);
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
}

.pc-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.pc-header-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pc-header-btn:hover {
  background: var(--bs-tertiary-bg);
}

.pc-dashboard-app .pc-header-btn:focus-visible {
  background: rgba(var(--bs-primary-rgb), 0.08);
  color: var(--bs-primary);
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
}

.pc-header-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--bs-secondary-color);
}

.pc-dashboard-app .btn {
  --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
}

.pc-signout-btn {
  width: auto;
  min-width: 44px;
  padding: 0 14px;
  gap: 8px;
  text-decoration: none;
}

.pc-signout-btn .pc-header-btn__label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--bs-secondary-color);
  white-space: nowrap;
}

.pc-cerner-toggle-btn {
  color: var(--bs-secondary-color);
}

.pc-cerner-toggle-btn svg {
  fill: currentColor;
}

/* Sidebar collapse */
.pc-sidebar-collapse-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-lg);
  background: var(--bs-tertiary-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 1003;
  transition: background 0.15s ease, transform 0.15s ease;
}

.pc-sidebar-collapse-btn:hover {
  background: var(--bs-secondary-bg);
}

.pc-sidebar-collapse-btn:focus-visible {
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
}

.pc-sidebar-collapse-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--bs-secondary-color);
  transition: transform 0.15s ease;
}

.pc-dashboard-app.is-sidebar-collapsed {
  --pc-sidebar-width: 84px;
}

.pc-dashboard-app.is-sidebar-collapsed .pc-sidebar {
  width: var(--pc-sidebar-width) !important;
}

.pc-dashboard-app.is-sidebar-collapsed .pc-logo-text,
.pc-dashboard-app.is-sidebar-collapsed .pc-nav-link span,
.pc-dashboard-app.is-sidebar-collapsed .pc-nav-label,
.pc-dashboard-app.is-sidebar-collapsed .pc-user-info {
  display: none !important;
}

.pc-dashboard-app.is-sidebar-collapsed .pc-nav-link {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  z-index: 1;
}

.pc-dashboard-app.is-sidebar-collapsed .pc-nav-link::before,
.pc-dashboard-app.is-sidebar-collapsed .pc-nav-link::after {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.pc-dashboard-app.is-sidebar-collapsed .pc-nav-link::before {
  content: '';
  top: 50%;
  left: calc(100% + 4px);
  width: 10px;
  height: 10px;
  background: #0F172A;
  border-radius: 2px;
  transform: translateY(-50%) rotate(45deg) translateX(-4px);
  z-index: 1101;
}

.pc-dashboard-app.is-sidebar-collapsed .pc-nav-link::after {
  content: attr(data-pc-tooltip);
  top: 50%;
  left: calc(100% + 12px);
  padding: 8px 10px;
  border-radius: 10px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.18);
  transform: translateY(-50%) translateX(-4px);
  z-index: 1102;
}

.pc-dashboard-app.is-sidebar-collapsed .pc-nav-link:hover::before,
.pc-dashboard-app.is-sidebar-collapsed .pc-nav-link:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) rotate(45deg) translateX(0);
}

.pc-dashboard-app.is-sidebar-collapsed .pc-nav-link:hover::after,
.pc-dashboard-app.is-sidebar-collapsed .pc-nav-link:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.pc-dashboard-app.is-sidebar-collapsed .pc-user-card {
  justify-content: center;
  width: 56px;
  margin-left: 14px;
  margin-right: 14px;
  padding: 8px;
  overflow: hidden;
}

.pc-dashboard-app.is-sidebar-collapsed .pc-sidebar-collapse-btn svg {
  transform: rotate(180deg);
}

.pc-collapsed-tooltip {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-9999px, -9999px, 0);
  pointer-events: none;
  z-index: 2147483644;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.pc-collapsed-tooltip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -4px;
  width: 10px;
  height: 10px;
  background: #0F172A;
  border-radius: 2px;
  transform: translateY(-50%) rotate(45deg);
}

.pc-collapsed-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
}

.pc-dashboard-app.has-floating-sidebar-tooltips.is-sidebar-collapsed .pc-nav-link::before,
.pc-dashboard-app.has-floating-sidebar-tooltips.is-sidebar-collapsed .pc-nav-link::after {
  display: none;
}

/* Forms and buttons (override portal theme) */
.pc-dashboard-app .form-control,
.pc-dashboard-app .form-select {
  border-color: var(--bs-border-color);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--bs-tertiary-bg) !important;
  color: var(--bs-body-color);
}

.pc-dashboard-app .form-control:focus,
.pc-dashboard-app .form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
  background-color: var(--bs-body-bg) !important;
}

.pc-dashboard-app .btn,
body .modal .btn {
  font-family: inherit;
  border-radius: var(--bs-border-radius-lg);
  font-weight: 600;
  line-height: 1.25;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pc-dashboard-app .btn:focus-visible,
body .modal .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.2);
}

.pc-dashboard-app .btn-primary,
body .modal .btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-color: var(--bs-white);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-color: var(--bs-white);
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}

.pc-dashboard-app .btn-primary:hover,
.pc-dashboard-app .btn-primary:focus-visible,
.pc-dashboard-app .btn-primary:active,
.pc-dashboard-app .btn-primary.active,
.pc-dashboard-app .btn-primary.show,
body .modal .btn-primary:hover,
body .modal .btn-primary:focus-visible,
body .modal .btn-primary:active,
body .modal .btn-primary.active,
body .modal .btn-primary.show {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
  filter: brightness(1.05);
}

.pc-dashboard-app .btn.btn-outline-secondary,
.pc-dashboard-app .btn.btn-secondary,
body .modal .btn.btn-outline-secondary,
body .modal .btn.btn-secondary {
  --bs-btn-bg: var(--bs-white);
  --bs-btn-border-color: var(--bs-primary-border-subtle);
  --bs-btn-color: var(--bs-primary-text-emphasis);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-color: var(--bs-white);
  background-color: var(--bs-white) !important;
  border-color: var(--bs-primary-border-subtle) !important;
  color: var(--bs-primary-text-emphasis) !important;
}

.pc-dashboard-app .btn.btn-outline-secondary:hover,
.pc-dashboard-app .btn.btn-outline-secondary:focus-visible,
.pc-dashboard-app .btn.btn-secondary:hover,
.pc-dashboard-app .btn.btn-secondary:focus-visible,
body .modal .btn.btn-outline-secondary:hover,
body .modal .btn.btn-outline-secondary:focus-visible,
body .modal .btn.btn-secondary:hover,
body .modal .btn.btn-secondary:focus-visible {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}

body .modal .modal-content {
  border-radius: 14px;
  border: 1px solid var(--bs-border-color);
  box-shadow: var(--bs-box-shadow-lg);
}

body .modal .modal-header,
body .modal .modal-footer {
  padding: 1.25rem 1.5rem;
}

body .modal .modal-footer {
  background: var(--bs-tertiary-bg);
  border-top: 1px solid var(--bs-border-color);
}

body .modal .modal-footer .btn.btn-primary {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}

body .modal .modal-footer .btn.btn-primary:hover,
body .modal .modal-footer .btn.btn-primary:focus-visible,
body .modal .modal-footer .btn.btn-primary:active,
body .modal .modal-footer .btn.btn-primary.active,
body .modal .modal-footer .btn.btn-primary.show {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
  filter: brightness(1.05);
}

body .modal .modal-footer .btn.btn-outline-secondary,
body .modal .modal-footer .btn.btn-secondary {
  background-color: var(--bs-white) !important;
  border-color: var(--bs-primary-border-subtle) !important;
  color: var(--bs-primary-text-emphasis) !important;
}

body .modal .modal-footer .btn.btn-outline-secondary:hover,
body .modal .modal-footer .btn.btn-outline-secondary:focus-visible,
body .modal .modal-footer .btn.btn-secondary:hover,
body .modal .modal-footer .btn.btn-secondary:focus-visible {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary-border-subtle) !important;
  color: var(--bs-white) !important;
}

body .pc-sidebar-toggle {
  display: none !important;
}

@media (max-width: 767.98px) {
  body .pc-sidebar-toggle:not([hidden]) {
    display: inline-flex !important;
  }
}

/* Responsive */
@media (max-width: 1199.98px) {
  .pc-dashboard-app {
    --pc-sidebar-width: 84px;
  }

  .pc-sidebar {
    width: var(--pc-sidebar-width) !important;
    transition: width 0.18s ease;
  }

  .pc-dashboard-app:not(.is-sidebar-collapsed) .pc-logo-text,
  .pc-dashboard-app:not(.is-sidebar-collapsed) .pc-nav-link span,
  .pc-dashboard-app:not(.is-sidebar-collapsed) .pc-nav-label,
  .pc-dashboard-app:not(.is-sidebar-collapsed) .pc-user-info {
    display: none !important;
  }

  .pc-dashboard-app:not(.is-sidebar-collapsed) .pc-nav-link {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    z-index: 1;
  }

  .pc-dashboard-app:not(.is-sidebar-collapsed) .pc-user-card {
    justify-content: center;
    width: 56px;
    margin-left: 14px;
    margin-right: 14px;
    padding: 8px;
    overflow: hidden;
  }

  .pc-main {
    flex: 1 1 calc(100% - var(--pc-sidebar-width)) !important;
    width: calc(100% - var(--pc-sidebar-width)) !important;
    max-width: calc(100% - var(--pc-sidebar-width)) !important;
    margin-left: var(--pc-sidebar-width) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-nav-link,
  .pc-dashboard-app #ajax-content,
  .pc-sidebar-collapse-btn,
  .pc-sidebar-collapse-btn svg {
    transition: none;
  }

  .pc-dashboard-app.is-nav-pending .pc-top-header::after {
    animation: none;
  }
}

@keyframes pc-nav-progress {
  0% {
    left: -30%;
  }

  100% {
    left: 100%;
  }
}
