@charset "UTF-8";
.locale-switcher {
  display: flex;
  align-items: center;
  margin-right: 0.75rem;
}

.locale-switcher-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  background: transparent;
  border: 1px solid var(--platform-border, #e2e8f0);
  border-radius: 6px;
  color: var(--platform-text, #374151);
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}
.locale-switcher-btn:hover {
  background: var(--platform-hover, rgba(0, 0, 0, 0.05));
  border-color: var(--platform-border-hover, #d1d5db);
}

.locale-flag {
  font-size: 1.125rem;
  line-height: 1;
}

.locale-label {
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .locale-label {
    display: inline;
  }
}

@media (max-width: 767px) {
  .locale-label-mobile {
    display: none;
  }
}

[data-theme=dark] .locale-switcher-btn {
  border-color: #334155;
  color: #e2e8f0;
}
[data-theme=dark] .locale-switcher-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #475569;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .locale-switcher-btn {
    border-color: #334155;
    color: #e2e8f0;
  }
  :root:not([data-theme=light]) .locale-switcher-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #475569;
  }
}
.platform-menu {
  position: relative;
}

.platform-menu-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: transparent;
  border: 1px solid var(--platform-border, #e2e8f0);
  border-radius: 8px;
  color: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}
.platform-menu-trigger:hover {
  background: var(--platform-hover, rgba(255, 255, 255, 0.1));
}

.platform-menu-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.platform-menu-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-menu-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
}

.platform-menu-email {
  font-size: 0.8125rem;
  color: var(--platform-text, inherit);
  font-weight: 500;
}

.platform-menu-workspace {
  font-size: 0.6875rem;
  color: var(--platform-text-muted, #64748b);
}

.platform-menu-chevron {
  opacity: 0.5;
  margin-left: 0.25rem;
}

.platform-menu-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 240px;
  background: var(--platform-surface, white);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--platform-border, rgba(0, 0, 0, 0.08));
  z-index: 1000;
  overflow: hidden;
  animation: platform-menu-fade-in 0.15s ease-out;
}

.platform-menu-dropdown-hidden {
  display: none;
}

@keyframes platform-menu-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.platform-menu-section {
  padding: 0.375rem;
}

.platform-menu-section-title {
  padding: 0.5rem 0.75rem 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.platform-menu-divider {
  height: 1px;
  background: var(--platform-border, #e5e7eb);
  margin: 0.25rem 0;
}

.platform-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background-color 0.1s;
}
.platform-menu-item:hover {
  background: #f1f5f9;
  color: #1e293b;
}
.platform-menu-item svg {
  color: #64748b;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.platform-menu-item-active {
  background: #f0f9ff;
  color: #0369a1;
}
.platform-menu-item-active svg {
  color: #0369a1;
}

.platform-menu-item-danger {
  color: #dc2626;
}
.platform-menu-item-danger svg {
  color: #dc2626;
}
.platform-menu-item-danger:hover {
  background: #fef2f2;
}

.platform-menu-check {
  color: #059669 !important;
}

.platform-menu-check-placeholder {
  width: 16px;
  height: 16px;
}

.platform-menu-theme-toggle {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.platform-theme-icon-light,
.platform-theme-label-light {
  display: inline;
}

.platform-theme-icon-dark,
.platform-theme-label-dark {
  display: none;
}

[data-theme=dark] .platform-theme-icon-light,
[data-theme=dark] .platform-theme-label-light {
  display: none;
}
[data-theme=dark] .platform-theme-icon-dark,
[data-theme=dark] .platform-theme-label-dark {
  display: inline;
}
[data-theme=dark] .platform-menu-dropdown {
  background: #1e293b;
  border-color: #334155;
}
[data-theme=dark] .platform-menu-item {
  color: #e2e8f0;
}
[data-theme=dark] .platform-menu-item:hover {
  background: #334155;
  color: #f8fafc;
}
[data-theme=dark] .platform-menu-item svg {
  color: #94a3b8;
}
[data-theme=dark] .platform-menu-item-active {
  background: #1e3a5a;
  color: #60a5fa;
}
[data-theme=dark] .platform-menu-item-active svg {
  color: #60a5fa;
}
[data-theme=dark] .platform-menu-item-danger {
  color: #f87171;
}
[data-theme=dark] .platform-menu-item-danger svg {
  color: #f87171;
}
[data-theme=dark] .platform-menu-item-danger:hover {
  background: #450a0a;
}
[data-theme=dark] .platform-menu-section-title {
  color: #64748b;
}
[data-theme=dark] .platform-menu-divider {
  background: #334155;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .platform-theme-icon-light,
  :root:not([data-theme=light]) .platform-theme-label-light {
    display: none;
  }
  :root:not([data-theme=light]) .platform-theme-icon-dark,
  :root:not([data-theme=light]) .platform-theme-label-dark {
    display: inline;
  }
  :root:not([data-theme=light]) .platform-menu-dropdown {
    background: #1e293b;
    border-color: #334155;
  }
  :root:not([data-theme=light]) .platform-menu-item {
    color: #e2e8f0;
  }
  :root:not([data-theme=light]) .platform-menu-item:hover {
    background: #334155;
    color: #f8fafc;
  }
  :root:not([data-theme=light]) .platform-menu-item svg {
    color: #94a3b8;
  }
  :root:not([data-theme=light]) .platform-menu-item-active {
    background: #1e3a5a;
    color: #60a5fa;
  }
  :root:not([data-theme=light]) .platform-menu-item-active svg {
    color: #60a5fa;
  }
  :root:not([data-theme=light]) .platform-menu-item-danger {
    color: #f87171;
  }
  :root:not([data-theme=light]) .platform-menu-item-danger svg {
    color: #f87171;
  }
  :root:not([data-theme=light]) .platform-menu-item-danger:hover {
    background: #450a0a;
  }
  :root:not([data-theme=light]) .platform-menu-section-title {
    color: #64748b;
  }
  :root:not([data-theme=light]) .platform-menu-divider {
    background: #334155;
  }
}
.platform-menu-badge {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 0.125rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.platform-menu-badge-info {
  background: #dbeafe;
  color: #1e40af;
}

.platform-menu-badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.platform-menu-badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

[data-theme=dark] .platform-menu-badge-info {
  background: #1e3a5f;
  color: #93c5fd;
}
[data-theme=dark] .platform-menu-badge-warning {
  background: #451a03;
  color: #fcd34d;
}
[data-theme=dark] .platform-menu-badge-danger {
  background: #450a0a;
  color: #fca5a5;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .platform-menu-badge-info {
    background: #1e3a5f;
    color: #93c5fd;
  }
  :root:not([data-theme=light]) .platform-menu-badge-warning {
    background: #451a03;
    color: #fcd34d;
  }
  :root:not([data-theme=light]) .platform-menu-badge-danger {
    background: #450a0a;
    color: #fca5a5;
  }
}
:root {
  --platform-header-height: 60px;
  --platform-header-bg: #ffffff;
  --platform-header-border: #e5e7eb;
  --platform-header-text: #374151;
  --platform-header-text-muted: #6b7280;
  --platform-header-hover-bg: #f3f4f6;
  --platform-header-active-bg: #e5e7eb;
  --platform-header-primary: #2563eb;
}

[data-theme=dark] {
  --platform-header-bg: #1f2937;
  --platform-header-border: #374151;
  --platform-header-text: #f9fafb;
  --platform-header-text-muted: #9ca3af;
  --platform-header-hover-bg: #374151;
  --platform-header-active-bg: #4b5563;
  --platform-header-primary: #3b82f6;
}

.platform-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--platform-header-height);
  background: var(--platform-header-bg);
  border-bottom: 1px solid var(--platform-header-border);
}

.platform-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 1rem;
}

.platform-header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 0;
}

.platform-header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--platform-header-text);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.platform-header-brand:hover {
  color: var(--platform-header-primary);
}
.platform-header-brand img.platform-header-brand-logo {
  display: block;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.platform-header-logo-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--platform-header-primary);
}
.platform-header-logo-icon svg {
  width: 24px;
  height: 24px;
}

.platform-header-brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

.platform-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--platform-header-text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background-color 0.15s;
}
.platform-nav-link:hover {
  color: var(--platform-header-text);
  background-color: var(--platform-header-hover-bg);
}
.platform-nav-link.active {
  color: var(--platform-header-primary);
  background-color: rgba(37, 99, 235, 0.1);
}

.platform-nav-dropdown {
  position: relative;
  display: inline-flex;
}
.platform-nav-dropdown .platform-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
}

.platform-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.platform-settings-dropdown {
  position: relative;
}

.platform-settings-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--platform-header-border);
  border-radius: 0.375rem;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--platform-header-text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.platform-settings-trigger:hover {
  color: var(--platform-header-text);
  background-color: var(--platform-header-hover-bg);
  border-color: var(--platform-header-text-muted);
}

.platform-settings-chevron {
  transition: transform 0.15s;
}

.platform-settings-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 200px;
  background: var(--platform-header-bg);
  border: 1px solid var(--platform-header-border);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  z-index: 110;
}
.platform-settings-menu.platform-settings-menu-hidden {
  display: none;
}

.platform-settings-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: var(--platform-header-text);
  text-decoration: none;
  transition: background-color 0.15s;
}
.platform-settings-item:hover {
  background-color: var(--platform-header-hover-bg);
}
.platform-settings-item svg {
  width: 16px;
  height: 16px;
  color: var(--platform-header-text-muted);
}

.platform-settings-divider {
  height: 1px;
  background: var(--platform-header-border);
  margin: 0.5rem 0;
}

.platform-header-mobile-toggle {
  display: none;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: var(--platform-header-text);
  cursor: pointer;
  border-radius: 0.375rem;
}
.platform-header-mobile-toggle:hover {
  background-color: var(--platform-header-hover-bg);
}

@media (max-width: 768px) {
  .platform-header {
    height: auto;
    min-height: var(--platform-header-height);
  }
  .platform-header-container {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }
  .platform-header-left {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .platform-header-mobile-toggle {
    display: flex;
    order: 1;
  }
  .platform-header-brand {
    order: 0;
  }
  .platform-header-nav {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--platform-header-border);
    margin-top: 0.75rem;
    display: none;
  }
  .platform-header-nav.mobile-menu-open {
    display: flex;
  }
  .platform-nav-link {
    justify-content: flex-start;
    padding: 0.75rem;
  }
  .platform-header-right {
    order: 2;
    gap: 0.5rem;
  }
  .platform-settings-trigger span {
    display: none;
  }
  .platform-settings-trigger {
    padding: 0.5rem;
  }
}
@media (max-width: 480px) {
  .platform-header-brand-name {
    display: none;
  }
  .platform-header-container {
    padding: 0.5rem 0.75rem;
  }
}
.billing-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.billing-banner.billing-banner-info {
  background-color: #eff6ff;
  border-bottom: 1px solid #bfdbfe;
  color: #1e40af;
}
.billing-banner.billing-banner-info .billing-banner-btn-primary {
  background-color: #2563eb;
  color: white;
}
.billing-banner.billing-banner-info .billing-banner-btn-primary:hover {
  background-color: #1d4ed8;
}
.billing-banner.billing-banner-warning {
  background-color: #fffbeb;
  border-bottom: 1px solid #fde68a;
  color: #92400e;
}
.billing-banner.billing-banner-warning .billing-banner-btn-primary {
  background-color: #d97706;
  color: white;
}
.billing-banner.billing-banner-warning .billing-banner-btn-primary:hover {
  background-color: #b45309;
}
.billing-banner.billing-banner-error {
  background-color: #fef2f2;
  border-bottom: 1px solid #fecaca;
  color: #991b1b;
}
.billing-banner.billing-banner-error .billing-banner-btn-primary {
  background-color: #dc2626;
  color: white;
}
.billing-banner.billing-banner-error .billing-banner-btn-primary:hover {
  background-color: #b91c1c;
}

.billing-banner-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.billing-banner-icon {
  flex-shrink: 0;
}

.billing-banner-message {
  font-weight: 500;
}

.billing-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}

.billing-banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.15s ease;
  white-space: nowrap;
}
.billing-banner-meta {
  font-size: 0.75rem;
  opacity: 0.8;
  white-space: nowrap;
}

.billing-banner-days-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}
.billing-banner-days-badge strong {
  font-size: 1rem;
  font-weight: 700;
}
.billing-banner-days-badge.badge-info {
  background-color: #dbeafe;
  color: #1e40af;
}
.billing-banner-days-badge.badge-warning {
  background-color: #fef3c7;
  color: #92400e;
}
.billing-banner-days-badge.badge-urgent {
  background-color: #fee2e2;
  color: #991b1b;
  animation: pulse-urgent 2s ease-in-out infinite;
}

@keyframes pulse-urgent {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@media (max-width: 640px) {
  .billing-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }
  .billing-banner-actions {
    margin-left: 0;
    width: 100%;
  }
  .billing-banner-actions .billing-banner-btn {
    flex: 1;
    justify-content: center;
  }
}
html:has(.ms-body) {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

.ms-body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #4e4e4e;
  background-color: #f4f6f8;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
.ms-body h1, .ms-body h2, .ms-body h3, .ms-body h4, .ms-body h5, .ms-body h6 {
  color: #071b3b;
}
.ms-body a {
  color: inherit;
  text-decoration: inherit;
}

.ms-header {
  background-color: white;
  border-bottom: 1px solid #e6e8eb;
  padding: 0 1.5rem;
  height: 56px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.ms-header-marketing {
  background: #ffffff;
  border-bottom: 1px solid #e6e8eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  height: 60px;
}

.ms-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.ms-header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ms-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ms-header-right .locale-switcher {
  margin-right: 0;
}
.ms-header-right .locale-switcher-btn {
  border-color: #e6e8eb;
  color: #6a7689;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3125rem 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.15s;
}
.ms-header-right .locale-switcher-btn:hover {
  background-color: #f4f6f8;
  border-color: #cdd1d8;
  color: #071b3b;
}

.ms-header-brand {
  display: flex;
  align-items: center;
}

.ms-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ms-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ms-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #071b3b;
  letter-spacing: -0.025em;
}

.ms-logo-icon {
  display: block;
  height: 24px;
  width: 24px;
  border-radius: 4px;
}

.ms-logo-img {
  display: block;
  height: 28px;
  width: auto;
}

.ms-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ms-nav-link {
  color: #6a7689;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  transition: color 0.15s, background-color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.ms-nav-link:hover {
  color: #071b3b;
  background-color: #f4f6f8;
}
.ms-nav-link.active {
  color: #00473b;
  background-color: #d8fbd8;
}

.ms-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  background-color: #e52322;
  border-radius: 9999px;
}

.ms-nav-dropdown {
  position: relative;
  display: inline-flex;
}

.ms-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.ms-nav-dropdown-trigger .ms-icon-sm {
  transition: transform 0.15s;
}

.ms-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: white;
  border: 1px solid #e6e8eb;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 0.25rem 0;
  padding-top: 0.5rem;
  z-index: 200;
}
.ms-nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.ms-nav-dropdown:hover .ms-nav-dropdown-menu,
.ms-nav-dropdown:focus-within .ms-nav-dropdown-menu {
  display: block;
}

.ms-nav-dropdown:hover .ms-nav-dropdown-trigger .ms-icon-sm {
  transform: rotate(180deg);
}

.ms-nav-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #394962;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  white-space: nowrap;
  transition: background-color 0.1s, color 0.1s;
}
.ms-nav-dropdown-item:hover {
  background-color: #f4f6f8;
  color: #071b3b;
}

.ms-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ms-header-nav-marketing {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.ms-nav-link-marketing {
  color: #6a7689;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 0.25rem;
  transition: color 0.15s, background-color 0.15s;
  white-space: nowrap;
}
.ms-nav-link-marketing:hover {
  color: #071b3b;
  background-color: rgba(230, 232, 235, 0.6);
}

.ms-header-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
}
.ms-header-mobile-toggle:hover {
  background-color: #f4f6f8;
}

.ms-hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #394962;
  border-radius: 1px;
  transition: transform 0.2s;
}

@media (max-width: 768px) {
  .ms-header-mobile-toggle {
    display: flex;
    order: 3;
  }
  .ms-header-nav-marketing {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 1px solid #e6e8eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    z-index: 99;
  }
  .ms-header-nav-marketing.ms-header-nav-open {
    display: flex;
  }
  .ms-nav-link-marketing {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }
  .ms-header-marketing .ms-header-content {
    flex-wrap: wrap;
    position: relative;
  }
  .ms-header-marketing .ms-header-actions .ms-btn-outline {
    display: none;
  }
}
.ms-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ms-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

.ms-content-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

.ms-alert {
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 1.5rem;
  margin-top: 0.75rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 3rem);
}

.ms-alert-success {
  background-color: #d8fbd8;
  color: #00473b;
  border: 1px solid rgba(15, 183, 122, 0.3);
}

.ms-alert-danger {
  background-color: #fce9e9;
  color: #991b1b;
  border: 1px solid rgba(229, 35, 34, 0.3);
}

.ms-alert-warning {
  background-color: #fff1b2;
  color: #92400e;
  border: 1px solid rgba(254, 185, 0, 0.3);
}

.ms-alert-info {
  background-color: #cce0ff;
  color: #0063ff;
  border: 1px solid rgba(102, 161, 255, 0.3);
}

.ms-card {
  background-color: white;
  border: 1px solid #e6e8eb;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.ms-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e6e8eb;
}

.ms-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #071b3b;
  margin: 0;
}

.ms-card-footer {
  border-top: 1px solid #e6e8eb;
  background-color: rgba(230, 232, 235, 0.3);
}

.ms-card-personal {
  border-left: 3px solid #0fb77a;
  background-color: #f0fdf4;
}

.ms-page-header {
  margin-bottom: 1.5rem;
}

.ms-page-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #071b3b;
  margin: 0 0 0.25rem;
  letter-spacing: -0.025em;
}

.ms-page-subtitle {
  font-size: 0.875rem;
  color: #9ca4b1;
  margin: 0;
}

.ms-page-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ms-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ms-btn-primary {
  background-color: #76f584;
  color: #00473b;
  border-color: #76f584;
}
.ms-btn-primary:hover:not(:disabled) {
  background-color: #66df74;
}

.ms-btn-secondary {
  background-color: white;
  color: #394962;
  border-color: #cdd1d8;
}
.ms-btn-secondary:hover:not(:disabled) {
  background-color: #f4f6f8;
  border-color: #9ca4b1;
}

.ms-btn-danger {
  background-color: #e52322;
  color: white;
  border-color: #e52322;
}
.ms-btn-danger:hover:not(:disabled) {
  background-color: rgb(198.8105263158, 24.2890688259, 23.3894736842);
}

.ms-btn-success {
  background-color: #31ba6f;
  color: white;
  border-color: #31ba6f;
}
.ms-btn-success:hover:not(:disabled) {
  background-color: rgb(40.4927659574, 153.7072340426, 91.7285106383);
}

.ms-btn-ghost {
  background-color: transparent;
  color: #6a7689;
  border-color: transparent;
}
.ms-btn-ghost:hover:not(:disabled) {
  background-color: #f4f6f8;
  color: #071b3b;
}

.ms-btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
}

.ms-btn-lg {
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
}

.ms-table-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  border: 1px solid #e6e8eb;
  border-radius: 0.5rem;
  background-color: white;
}

.ms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.ms-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: #6a7689;
  background-color: #f4f6f8;
  border-bottom: 1px solid #e6e8eb;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ms-table td {
  padding: 0.75rem 1rem;
  color: #4e4e4e;
  border-bottom: 1px solid #e6e8eb;
}
.ms-table tr:last-child td {
  border-bottom: none;
}
.ms-table tr:hover td {
  background-color: #f4f6f8;
}

.ms-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}

.ms-badge-success {
  background-color: rgba(49, 186, 111, 0.15);
  color: #00473b;
}

.ms-badge-warning {
  background-color: rgba(254, 185, 0, 0.15);
  color: #92400e;
}

.ms-badge-danger {
  background-color: rgba(229, 35, 34, 0.15);
  color: #991b1b;
}

.ms-badge-info {
  background-color: rgba(102, 161, 255, 0.15);
  color: #0063ff;
}

.ms-badge-neutral {
  background-color: #f4f6f8;
  color: #6a7689;
}

.ms-form-group {
  margin-bottom: 1rem;
}

.ms-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #394962;
  margin-bottom: 0.375rem;
}

.ms-input, .ms-select, .ms-textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid #7a7a7a;
  border-radius: 0.25rem;
  background-color: white;
  color: #071b3b;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-sizing: border-box;
  line-height: 1.5;
}
.ms-input:focus, .ms-select:focus, .ms-textarea:focus {
  outline: none;
  border-color: #0063ff;
  box-shadow: 0 0 0 3px rgba(0, 99, 255, 0.1);
}
.ms-input::placeholder, .ms-select::placeholder, .ms-textarea::placeholder {
  color: #7a7a7a;
  opacity: 1;
}

.ms-textarea {
  min-height: 100px;
  resize: vertical;
}

.ms-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%237A7A7A' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  cursor: pointer;
  print-color-adjust: exact;
}
.ms-select:focus {
  border-color: #0063ff;
  box-shadow: 0 0 0 3px rgba(0, 99, 255, 0.1);
}

.ms-form-hint {
  font-size: 0.8125rem;
  color: #9ca4b1;
  margin-top: 0.25rem;
}

.ms-form-error {
  font-size: 0.8125rem;
  color: #e52322;
  margin-top: 0.25rem;
}

.ms-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #7a7a7a;
  border-radius: 0;
  background-color: white;
  cursor: pointer;
  vertical-align: middle;
  flex-shrink: 0;
}
.ms-checkbox:checked {
  background-color: #0063ff;
  border-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.ms-checkbox:focus {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 2px white, 0 0 0 4px #0063ff;
}

.ms-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #9ca4b1;
}

.ms-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.ms-empty-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #394962;
  margin-bottom: 0.5rem;
}

.ms-empty-text {
  font-size: 0.875rem;
  color: #9ca4b1;
  margin-bottom: 1.5rem;
}

.ms-portal-body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ms-portal-header {
  background-color: white;
  border-bottom: 1px solid #e6e8eb;
  padding: 0 1.5rem;
  height: 56px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.ms-portal-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.ms-portal-header-left {
  display: flex;
  align-items: center;
}

.ms-portal-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ms-portal-header-right .locale-switcher-btn {
  border-color: #cdd1d8;
  color: #394962;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3125rem 0.5rem;
  border-radius: 0.25rem;
}
.ms-portal-header-right .locale-switcher-btn:hover {
  background-color: #f4f6f8;
  border-color: #9ca4b1;
  color: #071b3b;
}

.ms-portal-switcher {
  position: relative;
}

.ms-portal-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #394962;
  background-color: #e6e8eb;
  border: 1px solid #cdd1d8;
  border-radius: 0.25rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.ms-portal-switcher-btn:hover {
  background-color: #cdd1d8;
  border-color: #9ca4b1;
  color: #071b3b;
}

.ms-portal-switcher-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.375rem;
  min-width: 220px;
  background-color: white;
  border: 1px solid #cdd1d8;
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  z-index: 100;
  overflow: hidden;
}

.ms-portal-switcher:hover .ms-portal-switcher-menu,
.ms-portal-switcher:focus-within .ms-portal-switcher-menu {
  display: block;
}

.ms-portal-switcher-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #394962;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.1s ease;
}
.ms-portal-switcher-item:hover {
  background-color: #e6e8eb;
  color: #071b3b;
}
.ms-portal-switcher-item:not(:last-child) {
  border-bottom: 1px solid #e6e8eb;
}

.ms-portal-switcher-active {
  color: #0fb77a;
  font-weight: 600;
  cursor: default;
}
.ms-portal-switcher-active:hover {
  background-color: transparent;
  color: #0fb77a;
}

.ms-portal-branding {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.ms-portal-logo {
  max-height: 36px;
  max-width: 160px;
}

.ms-portal-company-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #071b3b;
  margin: 0;
  letter-spacing: -0.025em;
}

.ms-portal-flash {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem 0;
}

.ms-portal-main {
  flex: 1;
}

.ms-portal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

.ms-portal-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.ms-portal-page-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #071b3b;
  margin: 0;
}

.ms-portal-session-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #6a7689;
  background-color: #f4f6f8;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}
.ms-portal-session-badge strong {
  color: #071b3b;
}

.ms-portal-doc-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ms-portal-doc-card {
  background-color: white;
  border: 1px solid #e6e8eb;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.ms-portal-doc-card:hover {
  border-color: #cdd1d8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.ms-portal-doc-card-body {
  flex: 1;
  min-width: 0;
}

.ms-portal-doc-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #071b3b;
  margin: 0 0 0.25rem;
}

.ms-portal-doc-meta {
  font-size: 0.75rem;
  color: #6a7689;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.ms-portal-doc-separator {
  color: #9ca4b1;
}

.ms-portal-doc-version {
  font-weight: 600;
}

.ms-portal-doc-date {
  font-size: 0.6875rem;
  color: #9ca4b1;
  margin-top: 0.25rem;
}

.ms-portal-doc-card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.ms-portal-doc-card-actions .ms-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.ms-portal-sign-out {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e6e8eb;
}

.ms-portal-footer {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.75rem;
  color: #9ca4b1;
}

.ms-portal-powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin: 0;
}

.ms-portal-powered-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  text-decoration: none;
  color: #6a7689;
  font-weight: 600;
}
.ms-portal-powered-link:hover {
  color: #071b3b;
}

.ms-portal-powered-icon {
  height: 16px;
  width: 16px;
  border-radius: 3px;
}

.ms-portal-card {
  background-color: white;
  border: 1px solid #e6e8eb;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.ms-portal-landing-content {
  font-size: 0.9375rem;
  color: #4e4e4e;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ms-portal-landing-content h1, .ms-portal-landing-content h2, .ms-portal-landing-content h3 {
  color: #071b3b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.ms-portal-landing-content p {
  margin-bottom: 0.75rem;
}
.ms-portal-landing-content ul, .ms-portal-landing-content ol {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}

.ms-portal-form {
  margin-top: 1.5rem;
}

.ms-portal-email-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #cdd1d8;
  border-radius: 0.5rem;
  background-color: white;
  color: #071b3b;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.ms-portal-email-input:focus {
  outline: none;
  border-color: #0063ff;
  box-shadow: 0 0 0 3px rgba(0, 99, 255, 0.1);
}

.ms-portal-submit {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.ms-contact-picker {
  margin-top: 1.5rem;
}

.ms-contact-picker-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #071b3b;
  margin-bottom: 0.75rem;
}

.ms-contact-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #e6e8eb;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}
.ms-contact-option:hover {
  border-color: #76f584;
  background-color: rgba(118, 245, 132, 0.06);
}
.ms-contact-option.selected {
  border-color: #76f584;
  background-color: rgba(118, 245, 132, 0.1);
}
.ms-contact-option input[type=radio] {
  accent-color: #0fb77a;
}

.ms-contact-name {
  font-weight: 600;
  color: #071b3b;
}

.ms-contact-role {
  font-size: 0.8125rem;
  color: #9ca4b1;
}

.ms-session-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6a7689;
  padding: 0.375rem 0.75rem;
  background-color: #f4f6f8;
  border-radius: 0.25rem;
}

.ms-session-timer-warning {
  color: #92400e;
  background-color: #fff1b2;
}

.ms-session-timer-danger {
  color: #991b1b;
  background-color: #fce9e9;
}

.ms-doc-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ms-doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background-color: white;
  border: 1px solid #e6e8eb;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ms-doc-item:hover {
  border-color: #cdd1d8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.ms-doc-info {
  flex: 1;
}

.ms-doc-title {
  font-weight: 700;
  color: #071b3b;
  margin-bottom: 0.25rem;
}

.ms-doc-meta {
  font-size: 0.8125rem;
  color: #9ca4b1;
}

.ms-doc-actions {
  display: flex;
  gap: 0.5rem;
  margin-left: 1rem;
}

.ms-pdf-viewer {
  width: 100%;
  height: 80vh;
  border: 1px solid #e6e8eb;
  border-radius: 0.5rem;
}

.ms-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ms-stat-card {
  background-color: white;
  border: 1px solid #e6e8eb;
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.ms-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca4b1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.ms-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #071b3b;
  line-height: 1;
}

.ms-stat-change {
  font-size: 0.8125rem;
  margin-top: 0.375rem;
}

.ms-text-muted {
  color: #9ca4b1;
}

.ms-text-sm {
  font-size: 0.8125rem;
}

.ms-text-danger {
  color: #e52322;
}

.ms-text-success {
  color: #31ba6f;
}

.ms-text-warning {
  color: #feb900;
}

.ms-mt-1 {
  margin-top: 0.5rem;
}

.ms-mt-2 {
  margin-top: 1rem;
}

.ms-mt-3 {
  margin-top: 1.5rem;
}

.ms-mb-1 {
  margin-bottom: 0.5rem;
}

.ms-mb-2 {
  margin-bottom: 1rem;
}

.ms-mb-3 {
  margin-bottom: 1.5rem;
}

.ms-flex {
  display: flex;
}

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

.ms-request-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.ms-gap-1 {
  gap: 0.5rem;
}

.ms-gap-2 {
  gap: 1rem;
}

.ms-portal-url {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #f4f6f8;
  border: 1px solid #e6e8eb;
  border-radius: 0.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  color: #394962;
  word-break: break-all;
  user-select: all;
}

.ms-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e6e8eb;
  margin-bottom: 1.5rem;
}

.ms-tab {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ca4b1;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.ms-tab:hover {
  color: #071b3b;
}
.ms-tab.active {
  color: #00473b;
  border-bottom-color: #0fb77a;
}

.ms-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ms-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4e4e4e;
  cursor: pointer;
  padding: 0.375rem 0.5rem;
  border-radius: 0.25rem;
  transition: background-color 0.1s;
}
.ms-checkbox-label:hover {
  background-color: #f4f6f8;
}
.ms-checkbox-label input[type=checkbox] {
  accent-color: #0fb77a;
}

.ms-activity-feed {
  padding: 0;
}

.ms-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e6e8eb;
  font-size: 0.875rem;
}
.ms-activity-item:last-child {
  border-bottom: none;
}
.ms-activity-item:hover {
  background-color: #f4f6f8;
}

.ms-activity-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  margin-top: 0.125rem;
}
.ms-activity-icon.ms-activity-icon-blue {
  background: rgba(102, 161, 255, 0.15);
  color: #0063ff;
}
.ms-activity-icon.ms-activity-icon-green {
  background: rgba(49, 186, 111, 0.15);
  color: #00473b;
}
.ms-activity-icon.ms-activity-icon-red {
  background: rgba(229, 35, 34, 0.15);
  color: #e52322;
}
.ms-activity-icon.ms-activity-icon-yellow {
  background: rgba(254, 185, 0, 0.15);
  color: #92400e;
}
.ms-activity-icon.ms-activity-icon-gray {
  background: #f4f6f8;
  color: #9ca4b1;
}

.ms-activity-body {
  flex: 1;
  min-width: 0;
}

.ms-activity-type {
  color: #071b3b;
  font-weight: 600;
  line-height: 1.4;
}

.ms-activity-meta {
  color: #9ca4b1;
  font-size: 0.75rem;
  margin-top: 0.125rem;
}

.ms-mkt-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ms-mkt-hero {
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  background: linear-gradient(170deg, #020617 0%, #0c1f3f 40%, #142b52 70%, #071b3b 100%);
  position: relative;
  overflow: hidden;
}
.ms-mkt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.ms-mkt-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(15, 183, 122, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ms-mkt-hero .ms-mkt-container {
  position: relative;
  z-index: 1;
}

.ms-mkt-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0fb77a;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.ms-mkt-eyebrow::before, .ms-mkt-eyebrow::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: rgba(15, 183, 122, 0.4);
}

.ms-mkt-hero .ms-mkt-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .ms-mkt-hero .ms-mkt-hero-title {
    font-size: 2.25rem;
  }
}

.ms-mkt-hero-highlight {
  background: linear-gradient(135deg, #0fb77a 0%, #76f584 50%, #a8ffb8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ms-mkt-hero-subtitle {
  font-size: 1.25rem;
  color: #b0b8c8;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.ms-mkt-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.ms-mkt-hero-ctas .ms-btn-primary {
  box-shadow: 0 0 20px rgba(15, 183, 122, 0.35), 0 0 60px rgba(15, 183, 122, 0.1);
  padding: 0.875rem 2.25rem;
  font-size: 1.0625rem;
}
.ms-mkt-hero-ctas .ms-btn-primary:hover {
  box-shadow: 0 0 30px rgba(15, 183, 122, 0.5), 0 0 80px rgba(15, 183, 122, 0.15);
  transform: translateY(-1px);
}

.ms-mkt-hero-ctas .ms-btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 0.875rem 2.25rem;
  font-size: 1.0625rem;
}
.ms-mkt-hero-ctas .ms-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.ms-mkt-hero-note {
  font-size: 0.8125rem;
  color: #8892a4;
  margin-top: 0.5rem;
}

.ms-btn-outline {
  background: transparent;
  border: 2px solid #cdd1d8;
  color: #071b3b;
  font-weight: 600;
  border-radius: 0.25rem;
  padding: 0.625rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s, border-color 0.15s;
}
.ms-btn-outline:hover {
  background-color: #f4f6f8;
  border-color: #9ca4b1;
}

.ms-mkt-trust {
  padding: 2rem 1.5rem;
  background: #071b3b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ms-mkt-trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .ms-mkt-trust-items {
    gap: 1.25rem;
  }
}

.ms-mkt-trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #c5cdd8;
}
.ms-mkt-trust-item strong {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.ms-mkt-section {
  padding: 5rem 1.5rem;
}

.ms-mkt-section-alt {
  background-color: #f4f6f8;
}

.ms-mkt-section-dark {
  background: linear-gradient(180deg, #071b3b 0%, #0c1f3f 100%);
  color: #b0b8c8;
}
.ms-mkt-section-dark h2, .ms-mkt-section-dark h3, .ms-mkt-section-dark h4, .ms-body .ms-mkt-section-dark h2, .ms-body .ms-mkt-section-dark h3, .ms-body .ms-mkt-section-dark h4 {
  color: #ffffff;
}
.ms-mkt-section-dark p {
  color: #a0aab8;
}

.ms-mkt-section-title {
  font-size: 2.125rem;
  font-weight: 800;
  color: #071b3b;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.ms-mkt-section-subtitle {
  font-size: 1.0625rem;
  color: #9ca4b1;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ms-mkt-text-center {
  text-align: center;
}

.ms-mkt-body {
  font-size: 1rem;
  color: #4e4e4e;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ms-mkt-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .ms-mkt-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.ms-mkt-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
@media (max-width: 960px) {
  .ms-mkt-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .ms-mkt-features-grid {
    grid-template-columns: 1fr;
  }
}

.ms-mkt-feature {
  background: white;
  border: 1px solid #e6e8eb;
  border-left: 3px solid #0fb77a;
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ms-mkt-feature:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.ms-mkt-feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, rgba(15, 183, 122, 0.1), rgba(15, 183, 122, 0.04));
}

.ms-mkt-feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #071b3b;
  margin-bottom: 0.5rem;
}

.ms-mkt-feature-desc {
  font-size: 0.875rem;
  color: #4e4e4e;
  line-height: 1.65;
}

.ms-mkt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}
@media (max-width: 768px) {
  .ms-mkt-steps {
    grid-template-columns: 1fr;
  }
}

.ms-mkt-step {
  text-align: center;
  position: relative;
}

.ms-mkt-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #0fb77a, #76f584);
  color: #00473b;
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(15, 183, 122, 0.25);
}

.ms-mkt-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #071b3b;
  margin-bottom: 0.5rem;
}

.ms-mkt-step-desc {
  font-size: 0.9375rem;
  color: #4e4e4e;
  line-height: 1.6;
}

.ms-mkt-usecases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
@media (max-width: 768px) {
  .ms-mkt-usecases {
    grid-template-columns: 1fr;
  }
}

.ms-mkt-usecase {
  background: white;
  border: 1px solid #e6e8eb;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ms-mkt-usecase:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.ms-mkt-usecase-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.ms-mkt-usecase-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #071b3b;
  margin-bottom: 0.5rem;
}

.ms-mkt-usecase-desc {
  font-size: 0.9375rem;
  color: #4e4e4e;
  line-height: 1.65;
}

.ms-mkt-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .ms-mkt-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ms-mkt-security-grid {
    grid-template-columns: 1fr;
  }
}

.ms-mkt-security-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(15, 183, 122, 0.12);
}

.ms-mkt-security-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}
.ms-mkt-security-item:hover {
  background: rgba(255, 255, 255, 0.07);
}
.ms-mkt-security-item h4, .ms-body .ms-mkt-security-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.ms-mkt-security-item p {
  font-size: 0.875rem;
  color: #a0aab8;
  line-height: 1.65;
}

.ms-body .ms-mkt-section-dark .ms-mkt-section-title {
  color: #ffffff;
}

.ms-mkt-section-dark .ms-mkt-section-subtitle {
  color: #94a0b2;
}

.ms-mkt-pricing-card, .ms-pricing-card {
  max-width: 440px;
  margin: 0 auto;
  background-color: white;
  border: 2px solid #e6e8eb;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}
.ms-mkt-pricing-card::before, .ms-pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0fb77a, #76f584);
}

.ms-mkt-pricing-amount, .ms-pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #071b3b;
  line-height: 1;
}
.ms-mkt-pricing-amount span, .ms-pricing-amount span {
  font-size: 1.25rem;
  font-weight: 400;
  color: #9ca4b1;
}

.ms-mkt-pricing-trial {
  font-size: 0.875rem;
  color: #9ca4b1;
  margin-bottom: 1.5rem;
}

.ms-mkt-pricing-features, .ms-pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}
.ms-mkt-pricing-features li, .ms-pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  color: #4e4e4e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ms-mkt-pricing-features li::before, .ms-pricing-features li::before {
  content: "✓";
  color: #31ba6f;
  font-weight: 700;
  flex-shrink: 0;
}

.ms-pricing-period {
  font-size: 0.875rem;
  color: #9ca4b1;
  margin-bottom: 1.5rem;
}

.ms-mkt-faq {
  max-width: 740px;
  margin: 2rem auto 0;
}

.ms-mkt-faq-item {
  border-bottom: 1px solid #e6e8eb;
  padding: 1.25rem 0;
}
.ms-mkt-faq-item:last-child {
  border-bottom: none;
}

.ms-mkt-faq-q {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #071b3b;
  margin-bottom: 0.5rem;
}

.ms-mkt-faq-a {
  font-size: 0.9375rem;
  color: #4e4e4e;
  line-height: 1.7;
}

.ms-mkt-cta {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(170deg, #071b3b 0%, #0c1f3f 100%);
  position: relative;
}
.ms-mkt-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(15, 183, 122, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ms-body .ms-mkt-cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  margin-bottom: 0.75rem;
}

.ms-mkt-cta-subtitle {
  font-size: 1.0625rem;
  color: #b0b8c8;
  margin-bottom: 1.5rem;
}

.ms-mkt-cta .ms-mkt-hero-note {
  color: #8892a4;
}

.ms-marketing-hero {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.ms-marketing-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #071b3b;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.ms-marketing-hero-subtitle {
  font-size: 1.125rem;
  color: #9ca4b1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .ms-mkt-hero-title {
    font-size: 2rem;
  }
  .ms-mkt-section-title {
    font-size: 1.5rem;
  }
  .ms-mkt-cta-title {
    font-size: 1.5rem;
  }
}
.ms-body .billing-banner {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ms-body .billing-banner.billing-banner-info {
  background-color: #cce0ff;
  border-bottom: 1px solid rgba(102, 161, 255, 0.3);
  color: #0063ff;
}
.ms-body .billing-banner.billing-banner-info .billing-banner-btn-primary {
  background-color: #0063ff;
}
.ms-body .billing-banner.billing-banner-info .billing-banner-btn-primary:hover {
  background-color: rgb(0, 79.2, 204);
}
.ms-body .billing-banner.billing-banner-warning {
  background-color: #fff1b2;
  border-bottom: 1px solid rgba(254, 185, 0, 0.3);
  color: #92400e;
}
.ms-body .billing-banner.billing-banner-warning .billing-banner-btn-primary {
  background-color: #feb900;
  color: #92400e;
}
.ms-body .billing-banner.billing-banner-warning .billing-banner-btn-primary:hover {
  background-color: rgb(213.2, 155.2834645669, 0);
}
.ms-body .billing-banner.billing-banner-error {
  background-color: #fce9e9;
  border-bottom: 1px solid rgba(229, 35, 34, 0.3);
  color: #991b1b;
}
.ms-body .billing-banner.billing-banner-error .billing-banner-btn-primary {
  background-color: #e52322;
}
.ms-body .billing-banner.billing-banner-error .billing-banner-btn-primary:hover {
  background-color: rgb(189.6842105263, 23.1740890688, 22.3157894737);
}

.ms-body .billing-banner-days-badge.badge-info {
  background-color: #cce0ff;
  color: #0063ff;
}
.ms-body .billing-banner-days-badge.badge-warning {
  background-color: #fff1b2;
  color: #92400e;
}
.ms-body .billing-banner-days-badge.badge-urgent {
  background-color: #fce9e9;
  color: #991b1b;
}

.ms-audit-activity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ms-activity-icon.ms-activity-icon-sm {
  width: 26px;
  height: 26px;
  min-width: 26px;
  font-size: 0.8rem;
  border-radius: 6px;
}

.ms-audit-label {
  font-weight: 500;
  font-size: 0.8125rem;
  color: #071b3b;
  white-space: nowrap;
}

.ms-badge-sm {
  font-size: 0.625rem;
  padding: 0.125rem 0.375rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}

.ms-audit-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ms-audit-detail-row {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  line-height: 1.4;
}

.ms-audit-key {
  font-weight: 700;
  color: #6a7689;
  font-size: 0.75rem;
  white-space: nowrap;
}
.ms-audit-key::after {
  content: ":";
}

.ms-audit-value {
  color: #071b3b;
  font-size: 0.75rem;
  word-break: break-all;
}

.ms-pagination {
  display: flex;
  justify-content: center;
  padding: 1.25rem 0 0.5rem;
}
.ms-pagination nav.pagination {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.ms-pagination nav.pagination a, .ms-pagination nav.pagination span, .ms-pagination nav.pagination em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}
.ms-pagination nav.pagination a {
  color: #6a7689;
  background-color: white;
  border: 1px solid #e6e8eb;
}
.ms-pagination nav.pagination a:hover {
  color: #071b3b;
  background-color: #f4f6f8;
  border-color: #cdd1d8;
}
.ms-pagination nav.pagination em.current {
  color: white;
  background-color: #071b3b;
  border: 1px solid #071b3b;
  font-style: normal;
}
.ms-pagination nav.pagination span.gap {
  color: #9ca4b1;
  border: none;
}
.ms-pagination nav.pagination span.prev, .ms-pagination nav.pagination span.next {
  color: #9ca4b1;
  border: none;
}

.ms-folder-tree {
  margin-bottom: 1rem;
}

.ms-drag-ghost {
  opacity: 0.4;
  background: #e3f2fd !important;
  border: 1px dashed #1976d2 !important;
}

.ms-drag-chosen {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.ms-drag-active {
  opacity: 0.8;
}

.ms-folder-doc-row {
  transition: background-color 0.15s ease;
}
.ms-folder-doc-row:hover {
  background-color: #f8f9fa;
}

.ms-folder-header {
  transition: background-color 0.15s ease;
}
.ms-folder-header:hover {
  background-color: #e9ecef !important;
}

.ms-upsell-page {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.ms-upsell-card {
  max-width: 580px;
  text-align: center;
}

.ms-upsell-icon {
  margin-bottom: 1.5rem;
}

.ms-upsell-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ms-text);
  margin: 0 0 1rem;
}

.ms-upsell-description {
  font-size: 1.05rem;
  color: var(--ms-text-secondary);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.ms-upsell-features {
  text-align: left;
  margin: 0 auto 2rem;
  max-width: 420px;
}

.ms-upsell-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--ms-text);
}

.ms-upsell-feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.ms-upsell-cta {
  margin-bottom: 1.5rem;
}

.ms-btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.05rem;
}

.ms-upsell-footnote {
  font-size: 0.8rem;
  color: var(--ms-text-muted);
}

.ms-access-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.ms-extend-group {
  display: flex;
  gap: 0.125rem;
  border: 1px solid var(--ms-border);
  border-radius: 0.375rem;
  overflow: hidden;
  margin-right: 0.5rem;
}
.ms-extend-group .ms-btn {
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--ms-border);
}
.ms-extend-group .ms-btn:last-child {
  border-right: none;
}

.ms-btn-xs {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

.ms-row-warning {
  background-color: #fffbeb;
}

.ms-audit-sessions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ms-audit-session {
  background: var(--ms-card-bg);
  border: 1px solid var(--ms-border);
  border-radius: 0.5rem;
  overflow: hidden;
}
.ms-audit-session:nth-child(odd) {
  background: var(--ms-hover-bg, #f8fafb);
}

.ms-audit-session-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ms-text);
}
.ms-audit-session-header:hover {
  background: rgba(0, 0, 0, 0.03);
}

.ms-audit-session-time {
  min-width: 140px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ms-text);
  white-space: nowrap;
}

.ms-audit-session-count {
  min-width: 70px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--ms-border);
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
}

.ms-audit-session-actor {
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.ms-audit-session-summary {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.ms-audit-session-event-badge {
  font-size: 0.7rem;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: var(--ms-border);
  color: var(--ms-text-secondary);
  white-space: nowrap;
}

.ms-audit-session-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.ms-audit-session-body {
  display: none;
  border-top: 1px solid var(--ms-border);
}

.ms-audit-session-open .ms-audit-session-body {
  display: block;
}
.ms-audit-session-open .ms-audit-session-chevron {
  transform: rotate(180deg);
}

[data-theme=dark] .ms-body {
  background-color: #0f1729;
  color: #c9cdd4;
}
[data-theme=dark] .ms-body h1, [data-theme=dark] .ms-body h2, [data-theme=dark] .ms-body h3, [data-theme=dark] .ms-body h4, [data-theme=dark] .ms-body h5, [data-theme=dark] .ms-body h6 {
  color: #e8eaed;
}
[data-theme=dark] .ms-header {
  background-color: #1a2332;
  border-bottom-color: #2a3545;
}
[data-theme=dark] .ms-logo {
  color: #e8eaed;
}
[data-theme=dark] .ms-nav-link {
  color: #9ca4b1;
}
[data-theme=dark] .ms-nav-link:hover {
  color: #e8eaed;
}
[data-theme=dark] .ms-nav-link.active {
  color: #76f584;
}
[data-theme=dark] .ms-nav-link-marketing {
  color: #9ca4b1;
}
[data-theme=dark] .ms-nav-link-marketing:hover {
  color: #e8eaed;
  background-color: rgba(255, 255, 255, 0.06);
}
[data-theme=dark] .ms-hamburger-line {
  background-color: #9ca4b1;
}
[data-theme=dark] .ms-header-mobile-toggle:hover {
  background-color: #253040;
}
@media (max-width: 768px) {
  [data-theme=dark] .ms-header-nav-marketing {
    background: #1a2332;
    border-bottom-color: #2a3545;
  }
}
[data-theme=dark] .ms-nav-dropdown-trigger {
  color: #9ca4b1;
}
[data-theme=dark] .ms-nav-dropdown-trigger:hover {
  color: #e8eaed;
}
[data-theme=dark] .ms-nav-dropdown-menu {
  background-color: #1a2332;
  border-color: #2a3545;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
[data-theme=dark] .ms-nav-dropdown-item {
  color: #c9cdd4;
}
[data-theme=dark] .ms-nav-dropdown-item:hover {
  background-color: #253040;
  color: #e8eaed;
}
[data-theme=dark] .ms-header-right .locale-switcher-btn {
  border-color: #2a3545;
  color: #9ca4b1;
}
[data-theme=dark] .ms-header-right .locale-switcher-btn:hover {
  background-color: #253040;
  border-color: #3a4a5a;
  color: #e8eaed;
}
[data-theme=dark] .ms-main {
  background-color: #0f1729;
}
[data-theme=dark] .ms-card {
  background-color: #1a2332;
  border-color: #2a3545;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
[data-theme=dark] .ms-card-header {
  border-bottom-color: #2a3545;
}
[data-theme=dark] .ms-card-title {
  color: #e8eaed;
}
[data-theme=dark] .ms-card-footer {
  border-top-color: #2a3545;
  background-color: rgba(37, 48, 64, 0.5);
}
[data-theme=dark] .ms-card-personal {
  border-left-color: #76f584;
  background-color: rgba(118, 245, 132, 0.05);
}
[data-theme=dark] .ms-alert {
  border-color: #2a3545;
}
[data-theme=dark] .ms-alert-success {
  background-color: #0a2e1a;
  border-color: #14532d;
  color: #76f584;
}
[data-theme=dark] .ms-alert-danger {
  background-color: #2a0f0f;
  border-color: #450a0a;
  color: #f87171;
}
[data-theme=dark] .ms-alert-warning {
  background-color: #2a1f00;
  border-color: #422006;
  color: #fbbf24;
}
[data-theme=dark] .ms-alert-info {
  background-color: #0c1e33;
  border-color: #1e3a5f;
  color: #60a5fa;
}
[data-theme=dark] .ms-table th {
  background-color: #151e2d;
  color: #9ca4b1;
  border-bottom-color: #2a3545;
}
[data-theme=dark] .ms-table td {
  border-bottom-color: #2a3545;
  color: #c9cdd4;
}
[data-theme=dark] .ms-table tr:hover td {
  background-color: #1e2a3a;
}
[data-theme=dark] .ms-input, [data-theme=dark] .ms-textarea, [data-theme=dark] .ms-select {
  background-color: #151e2d;
  border-color: #2a3545;
  color: #e8eaed;
}
[data-theme=dark] .ms-input::placeholder, [data-theme=dark] .ms-textarea::placeholder, [data-theme=dark] .ms-select::placeholder {
  color: #6a7689;
}
[data-theme=dark] .ms-input:focus, [data-theme=dark] .ms-textarea:focus, [data-theme=dark] .ms-select:focus {
  border-color: #76f584;
  box-shadow: 0 0 0 3px rgba(118, 245, 132, 0.15);
}
[data-theme=dark] .ms-label {
  color: #c9cdd4;
}
[data-theme=dark] .ms-form-hint {
  color: #6a7689;
}
[data-theme=dark] .ms-btn-primary {
  background-color: #76f584;
  color: #00473b;
}
[data-theme=dark] .ms-btn-primary:hover {
  background-color: #66df74;
}
[data-theme=dark] .ms-btn-secondary {
  background-color: #253040;
  border-color: #2a3545;
  color: #c9cdd4;
}
[data-theme=dark] .ms-btn-secondary:hover {
  background-color: #2a3a4a;
  color: #e8eaed;
}
[data-theme=dark] .ms-btn-ghost {
  color: #9ca4b1;
}
[data-theme=dark] .ms-btn-ghost:hover {
  background-color: #253040;
  color: #e8eaed;
}
[data-theme=dark] .ms-badge {
  background-color: #253040;
  color: #c9cdd4;
}
[data-theme=dark] .ms-badge-success {
  background-color: #14532d;
  color: #4ade80;
}
[data-theme=dark] .ms-badge-warning {
  background-color: #422006;
  color: #fbbf24;
}
[data-theme=dark] .ms-badge-danger {
  background-color: #450a0a;
  color: #f87171;
}
[data-theme=dark] .ms-badge-info {
  background-color: #1e3a5f;
  color: #60a5fa;
}
[data-theme=dark] .ms-badge-neutral {
  background-color: #253040;
  color: #9ca4b1;
}
[data-theme=dark] .ms-stat-card {
  background-color: #1a2332;
  border-color: #2a3545;
}
[data-theme=dark] .ms-stat-label {
  color: #9ca4b1;
}
[data-theme=dark] .ms-stat-value {
  color: #e8eaed;
}
[data-theme=dark] .ms-page-title {
  color: #e8eaed;
}
[data-theme=dark] .ms-page-subtitle {
  color: #9ca4b1;
}
[data-theme=dark] .ms-text-muted {
  color: #6a7689;
}
[data-theme=dark] .ms-portal-url {
  background-color: #151e2d;
  border-color: #2a3545;
  color: #76f584;
}
[data-theme=dark] .ms-tab {
  color: #9ca4b1;
  border-bottom-color: transparent;
}
[data-theme=dark] .ms-tab:hover {
  color: #c9cdd4;
}
[data-theme=dark] .ms-tab.active {
  color: #76f584;
  border-bottom-color: #76f584;
}
[data-theme=dark] .ms-tabs {
  border-bottom-color: #2a3545;
}
[data-theme=dark] .ms-empty-icon {
  color: #3a4a5a;
}
[data-theme=dark] .ms-empty-title {
  color: #c9cdd4;
}
[data-theme=dark] .ms-empty-text {
  color: #6a7689;
}
[data-theme=dark] .ms-activity-item {
  border-bottom-color: #2a3545;
}
[data-theme=dark] .ms-activity-type {
  color: #c9cdd4;
}
[data-theme=dark] .ms-activity-meta {
  color: #6a7689;
}
[data-theme=dark] .ms-checkbox-label {
  color: #c9cdd4;
}
[data-theme=dark] .ms-checkbox-label:hover {
  background-color: #1e2a3a;
}
[data-theme=dark] .ms-audit-details {
  background-color: #151e2d;
  border-color: #2a3545;
}
[data-theme=dark] .ms-audit-key {
  color: #6a7689;
}
[data-theme=dark] .ms-audit-value {
  color: #c9cdd4;
}
[data-theme=dark] .ms-pagination nav.pagination a {
  color: #9ca4b1;
  background-color: #1a2332;
  border-color: #2a3545;
}
[data-theme=dark] .ms-pagination nav.pagination a:hover {
  color: #e8eaed;
  background-color: #253040;
  border-color: #3a4a5a;
}
[data-theme=dark] .ms-pagination nav.pagination em.current {
  background-color: #76f584;
  border-color: #76f584;
  color: #00473b;
}
[data-theme=dark] .ms-pagination nav.pagination span.gap, [data-theme=dark] .ms-pagination nav.pagination span.prev, [data-theme=dark] .ms-pagination nav.pagination span.next {
  color: #3a4a5a;
}
[data-theme=dark] .billing-banner {
  background-color: #1a2332;
  border-color: #2a3545;
  color: #c9cdd4;
}
[data-theme=dark] .billing-banner-days-badge {
  background-color: #253040;
  color: #fbbf24;
}
[data-theme=dark] .ms-portal-switcher-btn {
  background-color: #253040;
  border-color: #2a3545;
  color: #c9cdd4;
}
[data-theme=dark] .ms-portal-switcher-btn:hover {
  background-color: #2a3a4a;
  border-color: #3a4a5a;
  color: #e8eaed;
}
[data-theme=dark] .ms-portal-switcher-menu {
  background-color: #1a2332;
  border-color: #2a3545;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
[data-theme=dark] .ms-portal-switcher-item {
  color: #c9cdd4;
}
[data-theme=dark] .ms-portal-switcher-item:hover {
  background-color: #253040;
  color: #e8eaed;
}
[data-theme=dark] .ms-portal-switcher-item:not(:last-child) {
  border-bottom-color: #2a3545;
}
[data-theme=dark] .ms-portal-switcher-active {
  color: #76f584;
}
[data-theme=dark] .ms-portal-switcher-active:hover {
  color: #76f584;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .ms-body {
    background-color: #0f1729;
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-body h1, :root:not([data-theme=light]) .ms-body h2, :root:not([data-theme=light]) .ms-body h3, :root:not([data-theme=light]) .ms-body h4, :root:not([data-theme=light]) .ms-body h5, :root:not([data-theme=light]) .ms-body h6 {
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-header {
    background-color: #1a2332;
    border-bottom-color: #2a3545;
  }
  :root:not([data-theme=light]) .ms-logo {
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-nav-link {
    color: #9ca4b1;
  }
  :root:not([data-theme=light]) .ms-nav-link:hover {
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-nav-link.active {
    color: #76f584;
  }
  :root:not([data-theme=light]) .ms-nav-link-marketing {
    color: #9ca4b1;
  }
  :root:not([data-theme=light]) .ms-nav-link-marketing:hover {
    color: #e8eaed;
    background-color: rgba(255, 255, 255, 0.06);
  }
  :root:not([data-theme=light]) .ms-hamburger-line {
    background-color: #9ca4b1;
  }
  :root:not([data-theme=light]) .ms-header-mobile-toggle:hover {
    background-color: #253040;
  }
}
@media (prefers-color-scheme: dark) and (max-width: 768px) {
  :root:not([data-theme=light]) .ms-header-nav-marketing {
    background: #1a2332;
    border-bottom-color: #2a3545;
  }
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .ms-nav-dropdown-trigger {
    color: #9ca4b1;
  }
  :root:not([data-theme=light]) .ms-nav-dropdown-trigger:hover {
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-nav-dropdown-menu {
    background-color: #1a2332;
    border-color: #2a3545;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  :root:not([data-theme=light]) .ms-nav-dropdown-item {
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-nav-dropdown-item:hover {
    background-color: #253040;
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-header-right .locale-switcher-btn {
    border-color: #2a3545;
    color: #9ca4b1;
  }
  :root:not([data-theme=light]) .ms-header-right .locale-switcher-btn:hover {
    background-color: #253040;
    border-color: #3a4a5a;
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-main {
    background-color: #0f1729;
  }
  :root:not([data-theme=light]) .ms-card {
    background-color: #1a2332;
    border-color: #2a3545;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  :root:not([data-theme=light]) .ms-card-header {
    border-bottom-color: #2a3545;
  }
  :root:not([data-theme=light]) .ms-card-title {
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-card-footer {
    border-top-color: #2a3545;
    background-color: rgba(37, 48, 64, 0.5);
  }
  :root:not([data-theme=light]) .ms-card-personal {
    border-left-color: #76f584;
    background-color: rgba(118, 245, 132, 0.05);
  }
  :root:not([data-theme=light]) .ms-alert {
    border-color: #2a3545;
  }
  :root:not([data-theme=light]) .ms-alert-success {
    background-color: #0a2e1a;
    border-color: #14532d;
    color: #76f584;
  }
  :root:not([data-theme=light]) .ms-alert-danger {
    background-color: #2a0f0f;
    border-color: #450a0a;
    color: #f87171;
  }
  :root:not([data-theme=light]) .ms-alert-warning {
    background-color: #2a1f00;
    border-color: #422006;
    color: #fbbf24;
  }
  :root:not([data-theme=light]) .ms-alert-info {
    background-color: #0c1e33;
    border-color: #1e3a5f;
    color: #60a5fa;
  }
  :root:not([data-theme=light]) .ms-table th {
    background-color: #151e2d;
    color: #9ca4b1;
    border-bottom-color: #2a3545;
  }
  :root:not([data-theme=light]) .ms-table td {
    border-bottom-color: #2a3545;
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-table tr:hover td {
    background-color: #1e2a3a;
  }
  :root:not([data-theme=light]) .ms-input, :root:not([data-theme=light]) .ms-textarea, :root:not([data-theme=light]) .ms-select {
    background-color: #151e2d;
    border-color: #2a3545;
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-input::placeholder, :root:not([data-theme=light]) .ms-textarea::placeholder, :root:not([data-theme=light]) .ms-select::placeholder {
    color: #6a7689;
  }
  :root:not([data-theme=light]) .ms-input:focus, :root:not([data-theme=light]) .ms-textarea:focus, :root:not([data-theme=light]) .ms-select:focus {
    border-color: #76f584;
    box-shadow: 0 0 0 3px rgba(118, 245, 132, 0.15);
  }
  :root:not([data-theme=light]) .ms-label {
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-form-hint {
    color: #6a7689;
  }
  :root:not([data-theme=light]) .ms-btn-primary {
    background-color: #76f584;
    color: #00473b;
  }
  :root:not([data-theme=light]) .ms-btn-primary:hover {
    background-color: #66df74;
  }
  :root:not([data-theme=light]) .ms-btn-secondary {
    background-color: #253040;
    border-color: #2a3545;
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-btn-secondary:hover {
    background-color: #2a3a4a;
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-btn-ghost {
    color: #9ca4b1;
  }
  :root:not([data-theme=light]) .ms-btn-ghost:hover {
    background-color: #253040;
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-badge {
    background-color: #253040;
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-badge-success {
    background-color: #14532d;
    color: #4ade80;
  }
  :root:not([data-theme=light]) .ms-badge-warning {
    background-color: #422006;
    color: #fbbf24;
  }
  :root:not([data-theme=light]) .ms-badge-danger {
    background-color: #450a0a;
    color: #f87171;
  }
  :root:not([data-theme=light]) .ms-badge-info {
    background-color: #1e3a5f;
    color: #60a5fa;
  }
  :root:not([data-theme=light]) .ms-badge-neutral {
    background-color: #253040;
    color: #9ca4b1;
  }
  :root:not([data-theme=light]) .ms-stat-card {
    background-color: #1a2332;
    border-color: #2a3545;
  }
  :root:not([data-theme=light]) .ms-stat-label {
    color: #9ca4b1;
  }
  :root:not([data-theme=light]) .ms-stat-value {
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-page-title {
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-page-subtitle {
    color: #9ca4b1;
  }
  :root:not([data-theme=light]) .ms-text-muted {
    color: #6a7689;
  }
  :root:not([data-theme=light]) .ms-portal-url {
    background-color: #151e2d;
    border-color: #2a3545;
    color: #76f584;
  }
  :root:not([data-theme=light]) .ms-tab {
    color: #9ca4b1;
    border-bottom-color: transparent;
  }
  :root:not([data-theme=light]) .ms-tab:hover {
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-tab.active {
    color: #76f584;
    border-bottom-color: #76f584;
  }
  :root:not([data-theme=light]) .ms-tabs {
    border-bottom-color: #2a3545;
  }
  :root:not([data-theme=light]) .ms-empty-icon {
    color: #3a4a5a;
  }
  :root:not([data-theme=light]) .ms-empty-title {
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-empty-text {
    color: #6a7689;
  }
  :root:not([data-theme=light]) .ms-activity-item {
    border-bottom-color: #2a3545;
  }
  :root:not([data-theme=light]) .ms-activity-type {
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-activity-meta {
    color: #6a7689;
  }
  :root:not([data-theme=light]) .ms-checkbox-label {
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-checkbox-label:hover {
    background-color: #1e2a3a;
  }
  :root:not([data-theme=light]) .ms-audit-details {
    background-color: #151e2d;
    border-color: #2a3545;
  }
  :root:not([data-theme=light]) .ms-audit-key {
    color: #6a7689;
  }
  :root:not([data-theme=light]) .ms-audit-value {
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-pagination nav.pagination a {
    color: #9ca4b1;
    background-color: #1a2332;
    border-color: #2a3545;
  }
  :root:not([data-theme=light]) .ms-pagination nav.pagination a:hover {
    color: #e8eaed;
    background-color: #253040;
    border-color: #3a4a5a;
  }
  :root:not([data-theme=light]) .ms-pagination nav.pagination em.current {
    background-color: #76f584;
    border-color: #76f584;
    color: #00473b;
  }
  :root:not([data-theme=light]) .ms-pagination nav.pagination span.gap, :root:not([data-theme=light]) .ms-pagination nav.pagination span.prev, :root:not([data-theme=light]) .ms-pagination nav.pagination span.next {
    color: #3a4a5a;
  }
  :root:not([data-theme=light]) .billing-banner {
    background-color: #1a2332;
    border-color: #2a3545;
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .billing-banner-days-badge {
    background-color: #253040;
    color: #fbbf24;
  }
  :root:not([data-theme=light]) .ms-portal-switcher-btn {
    background-color: #253040;
    border-color: #2a3545;
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-portal-switcher-btn:hover {
    background-color: #2a3a4a;
    border-color: #3a4a5a;
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-portal-switcher-menu {
    background-color: #1a2332;
    border-color: #2a3545;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  :root:not([data-theme=light]) .ms-portal-switcher-item {
    color: #c9cdd4;
  }
  :root:not([data-theme=light]) .ms-portal-switcher-item:hover {
    background-color: #253040;
    color: #e8eaed;
  }
  :root:not([data-theme=light]) .ms-portal-switcher-item:not(:last-child) {
    border-bottom-color: #2a3545;
  }
  :root:not([data-theme=light]) .ms-portal-switcher-active {
    color: #76f584;
  }
  :root:not([data-theme=light]) .ms-portal-switcher-active:hover {
    color: #76f584;
  }
}
