/*!
 * fasteval-doc-plugin
 * Copyright (c) 2026 - Present Intuit Inc. All rights reserved. Unauthorized reproduction is a violation of applicable law. This material contains certain confidential and proprietary information and trade secrets of Intuit Inc.
 */
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap);
/* Search Results Dropdown */

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px var(--shadow-color), 0 4px 12px var(--shadow-color);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1001;
}

/* Custom scrollbar */
.search-results::-webkit-scrollbar {
  width: 6px;
}

.search-results::-webkit-scrollbar-track {
  background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* Section headers */
.search-results-group {
  padding: 0.5rem 0;
}

.search-results-group:not(:first-child) {
  border-top: 1px solid var(--border-color);
}

.search-results-section {
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Result items */
.search-result-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.search-result-item:hover,
.search-result-item.selected {
  background: var(--hover-bg);
}

.search-result-item.selected {
  background: var(--focus-ring);
}

/* Icon */
.search-result-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.search-result-item:hover .search-result-icon,
.search-result-item.selected .search-result-icon {
  color: var(--primary-color);
}

/* Content */
.search-result-content {
  flex: 1 1;
  min-width: 0;
  overflow: hidden;
}

.search-result-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.search-result-separator {
  color: var(--text-secondary);
  font-weight: 400;
  margin: 0 0.25rem;
}

.search-result-heading {
  color: var(--text-secondary);
  font-weight: 400;
}

.search-result-snippet {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Highlight matched text */
.search-highlight {
  background: var(--primary-color);
  color: white;
  border-radius: 2px;
  padding: 0 2px;
  font-weight: 500;
}

/* Footer with keyboard hints */
.search-results-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border-color);
  background: var(--card-background);
  font-size: 1.1rem;
  color: var(--text-secondary);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.search-results-footer kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  height: 1.8rem;
  padding: 0 0.4rem;
  margin-right: 0.3rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 2px var(--shadow-color);
}

/* Empty state */
.search-results-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 600px) {
  .search-results {
    max-height: 300px;
  }

  .search-results-footer {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .search-result-title {
    font-size: 1.2rem;
  }

  .search-result-snippet {
    font-size: 1.1rem;
  }
}

/* Theme Toggle Switch */

.theme-switch {
  display: flex;
  justify-content: center;
  align-items: center;
}

.theme-switch .checkbox {
  opacity: 0;
  position: absolute;
  z-index: 10;
  pointer-events: auto;
}

.theme-switch .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px;
  border-radius: var(--radius-full);
  position: relative;
  height: 30px;
  width: 60px;
  cursor: pointer;
  box-shadow: var(--switch-shadow);
  transition: var(--transition-normal);
}

.theme-switch .label:hover .moon,
.theme-switch .label:hover .sun {
  transform: rotate(360deg);
}

.theme-switch .ball {
  transition: var(--transition-normal);
  background-color: var(--text-color);
  position: absolute;
  border-radius: var(--radius-full);
  top: 3.4px;
  left: 7px;
  height: 24px;
  width: 24px;
}

.theme-switch .moon {
  color: #f1c40f;
  transform-origin: center center;
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transform: rotate(0);
}

.theme-switch .sun {
  color: #ff6b00;
  transform-origin: center center;
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transform: rotate(0);
}

.theme-switch .ball {
  transform: translatex(0);
}

.dark .theme-switch .ball {
  transform: translatex(24px);
}

@media (prefers-color-scheme: dark) {
  .theme-switch .ball {
    transform: translatex(24px);
  }

  .light .theme-switch .ball {
    transform: translatex(0);
  }
}

/* Notch NavBar Styles */

.navbar-notch {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--background-color);
  border-radius: var(--notch-radius);
  box-shadow: 0 8px 32px var(--shadow-color), 0 1.5px 6px var(--shadow-color);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-spring);
  transition-property: transform, height, padding, border-radius, box-shadow;
  height: auto;
  min-height: var(--notch-min-height);
  padding: var(--notch-padding);
  transform-origin: center top;
  will-change: transform, height, padding, border-radius, box-shadow;
}

.navbar-notch.expanded {
  border-radius: var(--notch-radius);
  transform: translateX(-50%) scale(1.02);
  box-shadow: 0 12px 40px var(--shadow-color), 0 2px 8px var(--shadow-color);
}

/* Subtle glow on expansion */
.navbar-notch.expanded::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  border-radius: calc(var(--notch-radius) + 2px);
  opacity: 0.1;
  z-index: -1;
  transition: var(--transition-normal);
  transition-property: opacity;
}

/* Menu container */
.notch-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0 1rem;
  height: var(--notch-min-height);
  width: 100%;
  transition: var(--transition-spring);
  transition-property: padding;
}

.navbar-notch.expanded .notch-menu {
  padding: 2.5rem 2rem;
}

/* Divider between nav groups */
.notch-divider {
  width: 1px;
  height: 2rem;
  background: var(--border-color);
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* Menu item */
.notch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 0.7rem;
  transition: var(--transition-spring);
  transition-property: transform;
}

/* Link styling */
.notch-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.9rem;
  transition: var(--transition-spring);
  transition-property: color, background-color, transform;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-lg);
}

.notch-link:hover,
.notch-link:focus {
  color: var(--primary-color);
  background: var(--hover-bg);
}

.notch-link:active {
  transform: scale(0.95);
}

/* Icon */
.notch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
  transition: var(--transition-spring);
  transition-property: transform, color;
}

.notch-icon.nav-icon {
  color: var(--text-color);
}

.notch-link:hover .notch-icon {
  transform: scale(1.1);
  color: var(--primary-color);
}

/* Logo styles */
.notch-logo-item {
  padding-right: 0.5rem;
}

.notch-logo-link {
  flex-direction: row;
  gap: 0.8rem;
}

.notch-logo {
  color: var(--primary-color);
  transition: var(--transition-spring);
  transition-property: transform, filter;
}

.notch-logo-link:hover .notch-logo {
  transform: scale(1.1);
  filter: brightness(1.15);
}

.notch-brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-color);
  opacity: 1;
  max-height: 2rem;
  transform: none;
}

.navbar-notch.expanded .notch-brand-name {
  font-size: 1.8rem;
}

/* Label (hidden by default, shown on expand) */
.notch-label {
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  max-height: 0;
  transform: translateY(-10px) scale(0.8);
  transition: var(--transition-spring);
  transition-property: opacity, max-height, transform;
  will-change: opacity, max-height, transform;
  color: var(--text-secondary);
}

.navbar-notch.expanded .notch-label {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
  max-height: 2rem;
}

/* Search bar wrapper */
.notch-content-wrapper {
  width: 100%;
  padding: 0 1.5rem 1rem;
  max-height: 0;
  margin-top: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: var(--transition-spring);
  transition-property: max-height, padding, opacity, transform;
  will-change: max-height, padding, opacity, transform;
}

.navbar-notch.expanded .notch-content-wrapper {
  max-height: 10rem;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.15s;
}

.notch-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Alias for backwards compatibility */
.notch-search-wrapper {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition-spring);
  transition-property: max-height, opacity, transform;
  will-change: max-height, opacity, transform;
  margin-top: 0;
  position: relative;
}

.navbar-notch.expanded .notch-search-wrapper {
  max-height: 6rem;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
  margin-top: 1rem;
  overflow: visible;  /* Allow search results dropdown to escape */
}

/* Search input */
.notch-search-container {
  position: relative;
  width: 100%;
}

.notch-search {
  width: 100%;
  min-width: 300px;
  padding: 1rem 1.4rem;
  padding-left: 3.5rem;
  font-size: 1.4rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--background-color);
  color: var(--text-color);
  outline: none;
  transition: var(--transition-fast);
  transition-property: border-color, box-shadow;
}

.notch-search::-moz-placeholder {
  color: var(--text-secondary);
}

.notch-search::placeholder {
  color: var(--text-secondary);
}

.notch-search:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.notch-search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--text-secondary);
  pointer-events: none;
}

.notch-search-shortcut {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--text-secondary);
  background: var(--card-background);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: inherit;
}

/* Theme toggle in notch */
.notch-theme-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.theme-toggle {
  font-size: 1.7rem;
  margin: 0 0.2rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  transition-property: transform;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

/* External link indicator */
.notch-link.external::after {
  content: '';
  display: none;
}

/* Responsive */
@media (max-width: 600px) {
  .navbar-notch {
    padding: 0.3rem 0.5rem;
    border-radius: 1.5rem 1.5rem 1rem 1rem;
    top: 16px;
  }

  .navbar-notch .notch-menu {
    gap: 0.7rem;
  }

  .notch-icon {
    font-size: 1.5rem;
  }

  .notch-label {
    font-size: 0.9rem;
  }

  .notch-search {
    min-width: 200px;
  }

  .notch-divider {
    margin: 0 0.3rem;
    height: 1.5rem;
  }
}

.docs-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.docs-layout .main-content {
  flex: 1 1;
  padding-top: 100px; /* Space for fixed navbar */
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Fixed logo in top-left corner */
.fixed-logo {
  position: fixed;
  top: 24px;
  left: 28px;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
  transition-property: background-color, transform;
}

.fixed-logo:hover {
  background: var(--hover-bg);
  transform: scale(1.02);
}

.fixed-logo-icon {
  color: var(--primary-color);
  transition: var(--transition-fast);
  transition-property: transform, filter;
}

.fixed-logo:hover .fixed-logo-icon {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.fixed-logo-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .docs-layout .main-content {
    padding-top: 80px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .fixed-logo {
    top: 16px;
    left: 16px;
    padding: 6px 10px;
    gap: 8px;
  }

  .fixed-logo-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .fixed-logo-text {
    display: none;
  }
}

/* Google Fonts */

:root {
  /* === Core Colors === */
  --background-color: #f8f7fc;
  --text-color: #1a1a2e;
  --text-secondary: #6b5b8c;
  --text-muted: #9991b0;
  --primary-color: #6b5b8c;
  --primary-hover: #5a4a7a;
  --primary-light: rgba(107, 91, 140, 0.1);
  
  /* === Surface Colors === */
  --card-background: #ffffff;
  --border-color: #e0dde8;
  --border-light: #f0eef5;
  --shadow-color: rgba(41, 38, 57, 0.1);
  
  /* === Code Block Colors === */
  --code-bg: #f5f3fa;
  --code-text: #1a1a2e;
  --code-border: #e0dde8;
  
  /* === Interactive States === */
  --hover-bg: rgba(107, 91, 140, 0.08);
  --active-bg: rgba(107, 91, 140, 0.15);
  --focus-ring: rgba(107, 91, 140, 0.25);
  
  /* === Theme Toggle === */
  --switch-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1) inset;
  
  /* === Spacing Scale === */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  
  /* === Border Radius === */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* === Animation Timing === */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* === Layout === */
  --navbar-height: 80px;
  --sidebar-width: 280px;
  --content-max-width: 760px;
  
  /* === Notch Specific === */
  --notch-radius: 2rem;
  --notch-padding: 10px;
  --notch-min-height: 4rem;
}

[data-theme="dark"] {
  /* === Core Colors === */
  --background-color: #1a1a2e;
  --text-color: #f0eef5;
  --text-secondary: #b0a3cc;
  --text-muted: #7a6f99;
  --primary-color: #a898d4;
  --primary-hover: #c4b5fc;
  --primary-light: rgba(168, 152, 212, 0.15);
  
  /* === Surface Colors === */
  --card-background: #252538;
  --border-color: #3d3a52;
  --border-light: #2d2a40;
  --shadow-color: rgba(0, 0, 0, 0.4);
  
  /* === Code Block Colors === */
  --code-bg: #1e1b2e;
  --code-text: #f0eef5;
  --code-border: #3d3a52;
  
  /* === Interactive States === */
  --hover-bg: rgba(168, 152, 212, 0.1);
  --active-bg: rgba(168, 152, 212, 0.2);
  --focus-ring: rgba(168, 152, 212, 0.3);
  
  /* === Theme Toggle === */
  --switch-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5) inset;
}

/* === Base Reset === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #f8f7fc;
  background-color: var(--background-color);
  color: #1a1a2e;
  color: var(--text-color);
  transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  min-height: 100vh;
}

a {
  color: #6b5b8c;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.15s ease;
  transition: color var(--transition-fast);
}

a:hover {
  color: #5a4a7a;
  color: var(--primary-hover);
}

button {
  font-family: inherit;
  cursor: pointer;
  background-color: #ffffff;
  background-color: var(--card-background);
  color: #1a1a2e;
  color: var(--text-color);
  border: 1px solid #e0dde8;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  border-radius: var(--radius-md);
  transition: all 0.15s ease;
  transition: all var(--transition-fast);
}

button:hover {
  background-color: rgba(107, 91, 140, 0.08);
  background-color: var(--hover-bg);
  border-color: #6b5b8c;
  border-color: var(--primary-color);
}

input,
textarea,
select {
  font-family: inherit;
  background-color: #ffffff;
  background-color: var(--card-background);
  color: #1a1a2e;
  color: var(--text-color);
  border: 1px solid #e0dde8;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  border-radius: var(--radius-md);
  transition: all 0.15s ease;
  transition: all var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #6b5b8c;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(107, 91, 140, 0.25);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

code {
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;
  background-color: #f5f3fa;
  background-color: var(--code-bg);
  color: #1a1a2e;
  color: var(--code-text);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid #e0dde8;
  border: 1px solid var(--code-border);
  font-size: 0.9em;
}

pre {
  background-color: #f5f3fa;
  background-color: var(--code-bg);
  border: 1px solid #e0dde8;
  border: 1px solid var(--code-border);
  border-radius: 12px;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  overflow-x: auto;
}

pre code {
  background: none;
  border: none;
  padding: 0;
}

::-moz-selection {
  background-color: #6b5b8c;
  background-color: var(--primary-color);
  color: white;
}

::selection {
  background-color: #6b5b8c;
  background-color: var(--primary-color);
  color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #e0dde8;
  background: var(--border-color);
  border-radius: 9999px;
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: #9991b0;
  background: var(--text-muted);
}


/*# sourceMappingURL=661.73221d217d87725f.css.map*/