@import url("/fonts/material-symbols/outlined.css");
#sub-nav-wrapper-placeholder {
  display: flex;
  align-items: center;
  padding: 0px 60px 0px 50px;
  height: 40px;
  width: 100%;
  background-color: #f7fafc;
  position: relative;
  z-index: 100;
}

#sub-nav-wrapper {
  height: 40px;
  width: 100%;
  background-color: #f7fafc;
}
#sub-nav-wrapper #sub-nav-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0px 50px;
}
#sub-nav-wrapper #sub-nav-container .sub-nav-button-container[data-selected=true] {
  background-color: rgba(0, 0, 0, 0.65);
  color: white;
}
#sub-nav-wrapper #sub-nav-container .sub-nav-button-container.developer-only,
#sub-nav-wrapper #sub-nav-container .sub-nav-button-container.business-intelligence-only {
  display: none;
}
#sub-nav-wrapper #sub-nav-container .sub-nav-button-container {
  display: flex;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0px 20px;
  margin-left: 10px;
  margin-right: 10px;
  width: fit-content;
  flex-direction: row;
  text-decoration: none;
  color: #222;
}
#sub-nav-wrapper #sub-nav-container .sub-nav-button-container span.material-symbols-outlined {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 5px;
}
#sub-nav-wrapper #sub-nav-container .sub-nav-button-container span.sub-nav-button-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

#sub-nav-wrapper-placeholder .buttongroup-filter-button {
  background-color: #ddd !important;
  color: #ccc;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  user-select: none;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 20px;
  margin-left: 12px;
  margin-right: 12px;
  border-radius: 23px;
}
#sub-nav-wrapper-placeholder .buttongroup-filter-button span.material-symbols-outlined {
  margin-right: 10px;
  font-size: 10px;
  display: none;
}
#sub-nav-wrapper-placeholder .buttongroup-filter-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
}
#sub-nav-wrapper-placeholder .buttongroup-filter-button[data-selected=true] {
  background-color: transparent !important;
  color: #222;
  border-color: rgba(0, 0, 0, 0.8);
}
#sub-nav-wrapper-placeholder .buttongroup-filter-button[data-selected=true]:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
#sub-nav-wrapper-placeholder .buttongroup-filter-button[data-selected=false] {
  background-color: rgba(0, 0, 0, 0.05);
  color: #888;
  border-color: rgba(0, 0, 0, 0.1);
}
#sub-nav-wrapper-placeholder .buttongroup-filter-button[data-selected=false]:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #666;
}

#top-nav-wrapper {
  height: 40px;
  width: 100vw;
  max-width: 100%;
  background-color: white;
}
#top-nav-wrapper #top-nav-container {
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
}
#top-nav-wrapper #top-nav-container #top-nav-header-container {
  display: flex;
  margin-left: 30px;
  align-items: center;
  text-decoration: none;
  color: #1a1a1a;
}
#top-nav-wrapper #top-nav-container #top-nav-header-container #top-nav-header-logo-container {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
#top-nav-wrapper #top-nav-container #top-nav-header-container #top-nav-header-logo-container img {
  height: 24px;
  margin-right: 5px;
}
#top-nav-wrapper #top-nav-container #top-nav-header-container #top-nav-header-text-container {
  font-size: 14px;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container {
  position: absolute;
  right: 40px;
  height: 100%;
  display: flex;
  align-items: center;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container[data-type=login] {
  display: flex;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container[data-type=login] .top-nav-button-wrapper {
  display: flex;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container .top-nav-button-icon {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container .top-nav-button-icon span.material-symbols-outlined {
  font-size: 16px;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container .top-nav-button-label {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #666;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.user-dropdown {
  position: relative;
  flex-direction: column;
  align-items: stretch;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.user-dropdown .top-nav-button-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.user-dropdown .top-nav-button-wrapper:hover {
  background-color: #f5f5f5;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.user-dropdown .user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.user-dropdown .user-dropdown-menu .user-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.user-dropdown .user-dropdown-menu .user-dropdown-item:hover {
  background-color: #f5f5f5;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.user-dropdown .user-dropdown-menu .user-dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.user-dropdown .user-dropdown-menu .user-dropdown-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.user-dropdown .user-dropdown-menu .user-dropdown-item .top-nav-button-icon {
  margin-right: 10px;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.user-dropdown .user-dropdown-menu .user-dropdown-item .top-nav-button-label {
  flex: 1;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.user-dropdown.active .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown {
  position: relative;
  flex-direction: column;
  align-items: stretch;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown .top-nav-button-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown .top-nav-button-wrapper:hover {
  background-color: #f5f5f5;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown .model-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown .model-dropdown-menu .model-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown .model-dropdown-menu .model-dropdown-item:hover {
  background-color: #f5f5f5;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown .model-dropdown-menu .model-dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown .model-dropdown-menu .model-dropdown-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown .model-dropdown-menu .model-dropdown-item .top-nav-button-icon {
  margin-right: 10px;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown .model-dropdown-menu .model-dropdown-item .top-nav-button-icon span {
  font-size: 18px;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown .model-dropdown-menu .model-dropdown-item .top-nav-button-label {
  flex: 1;
}
#top-nav-wrapper #top-nav-container #top-nav-buttons-container .top-nav-button-container.model-dropdown.active .model-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#login-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 10000;
  animation: fadeIn 0.2s ease-in-out;
}
#login-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-container {
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  animation: slideUp 0.3s ease-out;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.modal-header h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.modal-close:hover {
  background-color: #f5f5f5;
}
.modal-close .material-symbols-outlined {
  font-size: 24px;
  color: #666;
}

.modal-body {
  margin-bottom: 2rem;
}

#login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}
.form-group input {
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: inherit;
}
.form-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form-group input::placeholder {
  color: #999;
}
.form-group.error input {
  border-color: #dc3545;
}
.form-group .error-message {
  font-size: 0.85rem;
  color: #dc3545;
  margin-top: 0.25rem;
  display: none;
}
.form-group.error .error-message {
  display: block;
}

.form-actions {
  margin-top: 0.5rem;
}

.btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.modal-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.modal-footer-text {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 640px) {
  .modal-container {
    padding: 1.5rem;
    max-width: 100%;
  }
  .modal-header h2 {
    font-size: 1.5rem;
  }
}
/* Inter Variable Font */
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
/* Fira Code Variable Font */
@font-face {
  font-family: "Fira Code";
  src: url("/fonts/Fira_Code/FiraCode-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  font-variant-ligatures: contextual;
}
/* Material Symbols */
@font-face {
  font-family: "Material Symbols Outlined";
  src: url("/fonts/material-symbols/material-symbols-outlined.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Material Symbols Rounded";
  src: url("/fonts/material-symbols/material-symbols-rounded.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Material Symbols Sharp";
  src: url("/fonts/material-symbols/material-symbols-sharp.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: block;
}
/* Roboto Mono Variable Font */
@font-face {
  font-family: "Roboto Mono";
  src: url("/fonts/Roboto_Mono/RobotoMono-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Mono";
  src: url("/fonts/Roboto_Mono/RobotoMono-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}
html, body {
  font-family: "Inter", sans-serif;
}

pre, code {
  font-family: "Fira Code", monospace;
}

.column-resizer {
  position: relative;
  width: 8px;
  background: transparent;
  cursor: col-resize;
  user-select: none;
  flex-shrink: 0;
}
.column-resizer.right-column-resizer {
  transition: opacity 0.3s ease;
}
.column-resizer::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #aaa;
  transition: background-color 0.2s ease;
}
.column-resizer:hover::before {
  background-color: rgb(0, 152, 250);
}
.column-resizer:hover .resizer-nub {
  background-color: rgb(0, 152, 250);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%) scaleY(1.3);
}
.column-resizer.active .resizer-nub {
  background-color: rgb(0, 152, 250);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.column-resizer .resizer-nub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 40px;
  background-color: #444;
  border-radius: 4px;
  opacity: 0.5;
  transition: all 0.4s ease;
  pointer-events: none;
}

body.resizing {
  user-select: none;
}
body.resizing * {
  cursor: col-resize !important;
  user-select: none !important;
}

:root {
  --gooey-dark-bg: #1e1e1e;
  --gooey-dark-bg-secondary: #2c2c2c;
  --gooey-dark-border: #3c3c3c;
  --gooey-dark-text: #e0e0e0;
  --gooey-dark-text-secondary: #b0b0b0;
  --gooey-dark-accent: #bb86fc;
  --gooey-dark-accent-hover: #d4b4ff;
  --gooey-dark-button-bg: #2c2c2c;
  --gooey-dark-button-hover: #383838;
  --gooey-dark-input-bg: #252525;
  --gooey-dark-shadow: rgba(0, 0, 0, 0.5);
}

.floating-section-node {
  position: fixed;
  pointer-events: auto;
  cursor: default;
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.floating-section-node.light-mode {
  background: white;
  color: #222;
}
.floating-section-node.dark-mode {
  background: var(--gooey-dark-bg);
  color: var(--gooey-dark-text);
  border: 1px solid var(--gooey-dark-border);
  box-shadow: 0 8px 32px var(--gooey-dark-shadow);
}
.floating-section-node.dark-mode .floating-node-handlebar {
  background: var(--gooey-dark-bg-secondary);
  border-bottom: 1px solid var(--gooey-dark-border);
}
.floating-section-node.dark-mode .floating-node-handlebar .node-label {
  color: var(--gooey-dark-text);
}
.floating-section-node.dark-mode .floating-node-handlebar .drag-icon {
  color: var(--gooey-dark-text-secondary);
}
.floating-section-node.dark-mode .floating-node-handlebar .controls button:hover {
  background: var(--gooey-dark-button-hover);
}
.floating-section-node.dark-mode .floating-node-handlebar .controls button .material-symbols-outlined {
  color: var(--gooey-dark-text-secondary);
}
.floating-section-node.dark-mode .floating-node-content {
  background: var(--gooey-dark-bg);
}
.floating-section-node.horizontal-orientation {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 80px;
  max-height: 120px;
  padding: 12px 20px;
  gap: 16px;
}
.floating-section-node.horizontal-orientation .floating-node-handlebar {
  writing-mode: horizontal-tb;
  flex: 0 0 auto;
  border-right: 1px solid var(--gooey-dark-border);
  border-bottom: none;
  padding-right: 16px;
  margin-right: 16px;
}
.floating-section-node.horizontal-orientation .floating-node-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
}

.floating-node-handlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 0 0;
  user-select: none;
}
.floating-node-handlebar .label-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-node-handlebar .label-container .drag-icon {
  cursor: move;
  font-size: 20px;
}
.floating-node-handlebar .label-container .node-label {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.floating-node-handlebar .controls {
  display: flex;
  align-items: center;
  gap: 4px;
}
.floating-node-handlebar .controls button {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}
.floating-node-handlebar .controls button:hover {
  background: rgba(0, 0, 0, 0.05);
}
.floating-node-handlebar .controls button .material-symbols-outlined {
  font-size: 18px;
  color: #666;
}

.floating-node-content {
  padding: 12px;
  background: white;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cognitive-button-wrapper {
  display: inline-block;
  margin: 4px;
  background: transparent;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0.9;
  transform: scale(0.95);
}
.cognitive-button-wrapper:hover {
  opacity: 1;
  transform: scale(1);
  background: rgba(0, 0, 0, 0.02);
}
.cognitive-button-wrapper:active {
  transform: scale(0.92);
}
.dark-mode .cognitive-button-wrapper {
  border: 1px solid var(--gooey-dark-border);
  background: var(--gooey-dark-button-bg);
}
.dark-mode .cognitive-button-wrapper:hover {
  background: var(--gooey-dark-button-hover);
  border-color: var(--gooey-dark-accent);
}

.cognitive-panel-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s;
}
.cognitive-panel-icon:hover {
  background: rgba(0, 0, 0, 0.03);
}
.cognitive-panel-icon .material-symbols-outlined {
  font-size: 28px;
  transition: filter 0.3s, transform 0.3s;
  filter: brightness(1.5);
  -webkit-text-fill-color: transparent;
}
.cognitive-panel-icon:hover .material-symbols-outlined {
  filter: brightness(1.8);
  transform: scale(1.1);
}

.cognitive-button-label {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
  color: #666;
  text-transform: uppercase;
}
.dark-mode .cognitive-button-label {
  color: var(--gooey-dark-text-secondary);
}

.category-content .cognitive-button-wrapper {
  border-color: rgba(33, 150, 243, 0.2);
}

.category-actions .cognitive-button-wrapper {
  border-color: rgba(233, 30, 99, 0.2);
}

.category-system .cognitive-button-wrapper {
  border-color: rgba(76, 175, 80, 0.2);
}

.category-global .cognitive-button-wrapper {
  border-color: rgba(33, 150, 243, 0.2);
}

.category-rules .cognitive-button-wrapper {
  border-color: rgba(156, 39, 176, 0.2);
}

.category-TrustClient .cognitive-button-wrapper {
  border-color: rgba(0, 121, 107, 0.2);
}

.floating-node-menu {
  position: absolute;
  top: 40px;
  right: 8px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  min-width: 150px;
  z-index: 1000;
}
.floating-node-menu button {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
.floating-node-menu button:hover {
  background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .floating-section-node {
    max-width: 90vw;
  }
  .cognitive-button-wrapper {
    margin: 2px;
    padding: 6px;
  }
  .cognitive-panel-icon .material-symbols-outlined {
    font-size: 24px;
  }
  .cognitive-button-label {
    font-size: 9px;
  }
}
.wtf {
  border: 1px solid red !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
}

#left-column-wrapper:has(.config-system-left-column) {
  min-width: 300px !important;
}

.config-action-button[data-section=init] .material-symbols-outlined {
  font-size: 28px;
  color: rgb(180, 25, 50) !important;
  transition: color 0.3s;
}
.config-action-button[data-section=init]:hover {
  background-color: rgb(180, 25, 50) !important;
  color: white;
}

.config-action-button[data-action=prefill] .material-symbols-outlined {
  font-size: 28px;
  color: rgb(50, 160, 50) !important;
  transition: color 0.3s;
}
.config-action-button[data-action=prefill]:hover {
  background-color: rgb(20, 165, 80) !important;
  color: white;
}

.config-action-button[data-action=generate] .material-symbols-outlined {
  font-size: 28px;
  color: rgba(100, 20, 140, 0.5) !important;
  transition: color 0.3s;
}
.config-action-button[data-action=generate]:hover {
  background-color: rgba(100, 20, 140, 0.5) !important;
  color: white;
}

.config-system-left-column {
  padding: 20px;
  height: 100%;
  overflow-y: auto;
  background-color: #ffffff;
  color: #000000;
}
.config-system-left-column .section-container {
  margin-bottom: 30px;
}
.config-system-left-column .section-container .section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 8px;
}
.config-system-left-column .config-list .config-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 8px;
  width: fit-content;
}
.config-system-left-column .config-list .config-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.config-system-left-column .config-list .config-item[data-selected=true] {
  background-color: #444;
  color: #ffffff;
}
.config-system-left-column .config-list .config-item[data-selected=true] .material-symbols-outlined {
  color: #ffffff;
}
.config-system-left-column .config-list .config-item .material-symbols-outlined {
  font-size: 16px;
  color: #222;
  transition: color 0.2s;
}
.config-system-left-column .config-list .config-item .config-label {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
}

.config-system-middle-column {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  padding: 20px;
}
.config-system-middle-column .config-view {
  display: none;
}
.config-system-middle-column .config-view[data-active=true] {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.config-system-middle-column .config-section-container {
  margin-bottom: 90px;
  padding: 0px;
}
.config-system-middle-column .config-section-header-container {
  margin-bottom: 15px;
}
.config-system-middle-column .config-section-header {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
.config-system-middle-column .config-section-description {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}
.config-system-middle-column .config-actions {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.config-system-middle-column .config-action-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 30px;
  margin-left: 20px;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}
.config-system-middle-column .config-action-button:hover {
  border-color: #2196F3;
  background-color: rgba(33, 150, 243, 0.95);
}
.config-system-middle-column .config-action-button:hover span.material-symbols-outlined, .config-system-middle-column .config-action-button:hover .config-action-label {
  color: white !important;
}
.config-system-middle-column .config-action-button:active {
  transform: translateY(0);
}
.config-system-middle-column .config-action-button.loading {
  border-color: #fbbf24;
  background-color: rgba(251, 191, 36, 0.05);
  cursor: wait;
}
.config-system-middle-column .config-action-button.loading .config-action-icon .material-symbols-outlined {
  color: #fbbf24;
}
.config-system-middle-column .config-action-button.success {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
}
.config-system-middle-column .config-action-button.success .config-action-icon .material-symbols-outlined {
  color: #10b981;
}
.config-system-middle-column .config-action-button.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}
.config-system-middle-column .config-action-button.error .config-action-icon .material-symbols-outlined {
  color: #ef4444;
}
.config-system-middle-column .config-action-button .config-action-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.config-system-middle-column .config-action-button .config-action-icon .material-symbols-outlined {
  font-size: 28px;
  color: #2196F3;
}
.config-system-middle-column .config-action-button .config-action-label {
  font-size: 12px;
  font-family: "Fira Code", monospace;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.5px;
}

#config-system-json-container {
  height: 100%;
  padding: 10px;
}
#config-system-json-container #config-system-json-codemirror-wrapper {
  height: 100%;
}
#config-system-json-container #config-system-json-codemirror-wrapper .cm-editor {
  height: 100%;
  font-size: 13px;
  font-family: "Courier New", monospace;
}
#config-system-json-container #config-system-json-codemirror-wrapper .cm-editor .cm-scroller {
  overflow: auto;
  height: 100%;
}
