#tests-module-navigation {
  display: flex;
  gap: 10px;
  padding: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
#tests-module-navigation .tests-module-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 70px;
  height: 60px;
  border-radius: 6px;
  text-decoration: none;
  color: #666;
  font-size: 9px;
  transition: all 0.2s ease;
  cursor: pointer;
}
#tests-module-navigation .tests-module-button .material-symbols-outlined {
  font-size: 20px;
}
#tests-module-navigation .tests-module-button .tests-module-label {
  font-weight: 500;
}
#tests-module-navigation .tests-module-button:hover {
  background: #ddd;
  border-color: #4CAF50;
  color: #333;
}
#tests-module-navigation .tests-module-button.active {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
}
#tests-module-navigation .tests-module-button.active .material-symbols-outlined {
  color: white;
}
#tests-module-navigation .tests-module-button.active:hover {
  background: #45a049;
  transform: none;
}

#tests-left-column {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.left-column-tests-navigation-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px 10px;
}
.left-column-tests-navigation-container .summary-nav-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 6px;
  text-decoration: none;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  width: fit-content;
}
.left-column-tests-navigation-container .summary-nav-button .material-symbols-outlined {
  font-size: 20px;
  color: #666;
}
.left-column-tests-navigation-container .summary-nav-button .summary-nav-label {
  flex: 1;
}
.left-column-tests-navigation-container .summary-nav-button:hover {
  background: #f5f5f5;
  color: #333;
}
.left-column-tests-navigation-container .summary-nav-button:hover .material-symbols-outlined {
  color: #333;
}
.left-column-tests-navigation-container .summary-nav-button.active {
  background: #444;
  color: white;
}
.left-column-tests-navigation-container .summary-nav-button.active .material-symbols-outlined {
  color: white;
}
.left-column-tests-navigation-container .summary-nav-button.active:hover {
  background: #333;
}

#tests-summary-toggles {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#tests-summary-toggles .summary-toggle-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #000;
  font-size: 14px;
}
#tests-summary-toggles .summary-toggle-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}
#tests-summary-toggles .summary-toggle-button.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  color: #3b82f6;
}
#tests-summary-toggles .summary-toggle-button.active .material-symbols-outlined {
  color: #3b82f6;
}
#tests-summary-toggles .summary-toggle-button .material-symbols-outlined {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
}
#tests-summary-toggles .summary-toggle-button .summary-label {
  flex: 1;
  font-weight: 500;
  text-align: left;
}

#tests-navigation {
  flex: 1;
  padding: 20px;
}
#tests-navigation .tests-section {
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
#tests-navigation .tests-section .tests-section-header {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
  padding: 12px 16px;
  background-color: #f5f5f5;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
#tests-navigation .tests-section .tests-section-header:hover {
  background: rgba(255, 255, 255, 0.05);
}
#tests-navigation .tests-section .tests-section-header .material-symbols-outlined:first-child {
  font-size: 16px;
}
#tests-navigation .tests-section .tests-section-header .tests-section-title {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  letter-spacing: 0.05em;
}
#tests-navigation .tests-section .tests-section-header .toggle-icon {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease;
}
#tests-navigation .tests-section .tests-section-content {
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 8px 8px 8px;
}
#tests-navigation .tests-section .tests-section-content .tests-section-item {
  padding: 10px 16px;
  margin-bottom: 4px;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #000;
  font-size: 0.875rem;
}
#tests-navigation .tests-section .tests-section-content .tests-section-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #000;
}
#tests-navigation .tests-section .tests-section-content .tests-section-item.active {
  background: rgba(59, 130, 246, 0.15);
  color: #000;
  border-left: 3px solid #3b82f6;
  padding-left: 13px;
}
#tests-navigation .tests-section.collapsed .tests-section-content {
  max-height: 0;
  padding: 0;
}
#tests-navigation .tests-section.collapsed .toggle-icon {
  transform: rotate(0deg);
}
#tests-navigation .tests-section:not(.collapsed) .toggle-icon {
  transform: rotate(90deg);
}

#control-left-column {
  height: 100%;
  width: 100%;
  overflow-y: auto;
}

#tests-middle-column {
  height: 100%;
  width: 100%;
  overflow-y: auto;
}
#tests-middle-column #test-summary-tables {
  padding: 24px;
}
#tests-middle-column #test-summary-tables .summary-table {
  display: none;
}
#tests-middle-column #test-summary-tables .summary-table.active {
  display: block;
}
#tests-middle-column #test-summary-tables .summary-table .summary-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}
#tests-middle-column #test-summary-tables .summary-table .summary-table-content {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  padding: 24px;
  min-height: 200px;
}
#tests-middle-column #test-summary-tables .summary-table .summary-table-content p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
}
#tests-middle-column #test-config-container {
  padding: 24px;
}
#tests-middle-column #test-config-container #test-config-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  color: rgba(0, 0, 0, 0.4);
}
#tests-middle-column #test-config-container #test-config-placeholder .placeholder-icon {
  margin-bottom: 16px;
}
#tests-middle-column #test-config-container #test-config-placeholder .placeholder-icon .material-symbols-outlined {
  font-size: 4rem;
}
#tests-middle-column #test-config-container #test-config-placeholder .placeholder-text {
  font-size: 1rem;
}
#tests-middle-column #test-config-container #test-config-content .test-header {
  padding-bottom: 16px;
}
#tests-middle-column #test-config-container #test-config-content .test-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-meta {
  display: flex;
  gap: 24px;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-meta .test-file {
  font-family: "Monaco", "Menlo", "Courier New", monospace;
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-meta .test-iterations #iterations-count {
  font-weight: 600;
  color: #000;
  margin-left: 4px;
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-results {
  display: flex;
  gap: 24px;
  font-size: 0.875rem;
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-results span {
  color: #000;
  font-weight: 600;
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-results .result-pass #pass-count {
  color: #10b981;
  margin-left: 4px;
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-results .result-pass #pass-count.na-value {
  color: rgba(0, 0, 0, 0.4);
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-results .result-fail #fail-count {
  color: #ef4444;
  margin-left: 4px;
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-results .result-fail #fail-count.na-value {
  color: rgba(0, 0, 0, 0.4);
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-results .result-error #error-count {
  color: #f97316;
  margin-left: 4px;
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-results .result-error #error-count.na-value {
  color: rgba(0, 0, 0, 0.4);
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-results .result-total #total-percentage {
  color: #3b82f6;
  margin-left: 4px;
}
#tests-middle-column #test-config-container #test-config-content .test-header .test-results .result-total #total-percentage.na-value {
  color: rgba(0, 0, 0, 0.4);
}
#tests-middle-column #test-config-container #test-config-content .test-details {
  margin-bottom: 24px;
}
#tests-middle-column #test-config-container #test-config-content .test-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
}
#tests-middle-column #test-config-container #test-config-content .test-details #test-config-display {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  padding: 16px;
}
#tests-middle-column #test-config-container #test-config-content .test-details #test-config-display .config-item {
  margin-bottom: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 3px;
}
#tests-middle-column #test-config-container #test-config-content .test-details #test-config-display .config-item .config-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
#tests-middle-column #test-config-container #test-config-content .test-details #test-config-display .config-item .config-value {
  font-size: 0.875rem;
  color: #000;
  font-family: "Monaco", "Menlo", "Courier New", monospace;
}
#tests-middle-column #test-config-container #test-config-content .test-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .test-run-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
#tests-middle-column #test-config-container #test-config-content .test-actions #run-test-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding-left: 12px;
  padding-right: 20px;
  background: #f5f5f5;
  width: fit-content !important;
  border: none;
  border-radius: 25px;
  white-space: nowrap;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
#tests-middle-column #test-config-container #test-config-content .test-actions #run-test-btn:hover {
  background: #059669;
  color: white;
}
#tests-middle-column #test-config-container #test-config-content .test-actions #run-test-btn:disabled {
  background: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}
#tests-middle-column #test-config-container #test-config-content .test-actions #run-test-btn .material-symbols-outlined {
  font-size: 20px;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown {
  position: relative;
  display: inline-block;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 30px;
  padding: 0 8px 0 12px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger .dropdown-value {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  min-width: 40px;
  text-align: left;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger .dropdown-arrow {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, color 0.2s ease;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger:hover {
  border-color: rgba(0, 0, 0, 0.3);
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger:hover .dropdown-arrow {
  color: rgba(0, 0, 0, 0.8);
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger.active {
  border-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger.active .dropdown-arrow {
  transform: rotate(180deg);
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu .dropdown-item {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: background 0.15s ease;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu .dropdown-item:hover {
  background: rgba(16, 185, 129, 0.1);
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu .dropdown-item.selected {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu .dropdown-item:first-child {
  border-radius: 6px 6px 0 0;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu .dropdown-item:last-child {
  border-radius: 0 0 6px 6px;
}
#tests-middle-column #test-config-container #test-config-content .test-actions #copy-config-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0px 18px;
  background: #f5f5f5;
  border: none;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
#tests-middle-column #test-config-container #test-config-content .test-actions #copy-config-btn:hover {
  background: #7e22ce;
  color: white;
}
#tests-middle-column #test-config-container #test-config-content .test-actions #copy-config-btn:disabled {
  background: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}
#tests-middle-column #test-config-container #test-config-content .test-actions #copy-config-btn .material-symbols-outlined {
  font-size: 20px;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .test-status {
  flex: 1;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .test-status #test-status-text {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}
#tests-middle-column #test-config-container #test-config-content .test-actions .test-status #test-status-text.running {
  color: #3b82f6;
  font-weight: 600;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .test-status #test-status-text.success {
  color: #10b981;
  font-weight: 600;
}
#tests-middle-column #test-config-container #test-config-content .test-actions .test-status #test-status-text.error {
  color: #ef4444;
  font-weight: 600;
}

#control-middle-column {
  height: 100%;
  width: 100%;
  overflow-y: auto;
}
#control-middle-column #test-config-container {
  padding: 24px;
}
#control-middle-column #test-config-container #test-config-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  color: rgba(0, 0, 0, 0.4);
}
#control-middle-column #test-config-container #test-config-placeholder .placeholder-icon {
  margin-bottom: 16px;
}
#control-middle-column #test-config-container #test-config-placeholder .placeholder-icon .material-symbols-outlined {
  font-size: 4rem;
}
#control-middle-column #test-config-container #test-config-placeholder .placeholder-text {
  font-size: 1rem;
}
#control-middle-column #test-config-container #test-config-content .trustloop-test-header-container {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}
#control-middle-column #test-config-container #test-config-content .test-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
#control-middle-column #test-config-container #test-config-content .test-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  flex: 1;
}
#control-middle-column #test-config-container #test-config-content .test-header .test-meta {
  display: none;
}
#control-middle-column #test-config-container #test-config-content .test-header #run-experiment-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 20px 0 16px;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
#control-middle-column #test-config-container #test-config-content .test-header #run-experiment-btn .material-symbols-outlined {
  font-size: 20px;
}
#control-middle-column #test-config-container #test-config-content .test-header #run-experiment-btn:hover:not(:disabled) {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
#control-middle-column #test-config-container #test-config-content .test-header #run-experiment-btn:active:not(:disabled) {
  transform: translateY(0);
}
#control-middle-column #test-config-container #test-config-content .test-header #run-experiment-btn:disabled {
  background: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}
#control-middle-column #test-config-container #test-config-content .test-results {
  display: flex;
  gap: 20px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
}
#control-middle-column #test-config-container #test-config-content .test-results > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
}
#control-middle-column #test-config-container #test-config-content .test-results > span > span {
  font-size: 0.9375rem;
  font-weight: 700;
}
#control-middle-column #test-config-container #test-config-content .test-results .result-pass #pass-count {
  color: #10b981;
}
#control-middle-column #test-config-container #test-config-content .test-results .result-pass #pass-count.na-value {
  color: rgba(0, 0, 0, 0.3);
}
#control-middle-column #test-config-container #test-config-content .test-results .result-fail #fail-count {
  color: #ef4444;
}
#control-middle-column #test-config-container #test-config-content .test-results .result-fail #fail-count.na-value {
  color: rgba(0, 0, 0, 0.3);
}
#control-middle-column #test-config-container #test-config-content .test-results .result-error #error-count {
  color: #f97316;
}
#control-middle-column #test-config-container #test-config-content .test-results .result-error #error-count.na-value {
  color: rgba(0, 0, 0, 0.3);
}
#control-middle-column #test-config-container #test-config-content .test-results .result-clarify #clarify-count {
  color: #3b82f6;
}
#control-middle-column #test-config-container #test-config-content .test-results .result-clarify #clarify-count.na-value {
  color: rgba(0, 0, 0, 0.3);
}
#control-middle-column #test-config-container #test-config-content .test-results .result-total #total-percentage {
  color: #3b82f6;
}
#control-middle-column #test-config-container #test-config-content .test-results .result-total #total-percentage.na-value {
  color: rgba(0, 0, 0, 0.3);
}
#control-middle-column #test-config-container #test-config-content .test-details {
  margin-bottom: 24px;
}
#control-middle-column #test-config-container #test-config-content .test-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
}
#control-middle-column #test-config-container #test-config-content .test-details #test-config-display {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  padding: 16px;
}
#control-middle-column #test-config-container #test-config-content .test-details #test-config-display .config-item {
  margin-bottom: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 3px;
}
#control-middle-column #test-config-container #test-config-content .test-details #test-config-display .config-item .config-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
#control-middle-column #test-config-container #test-config-content .test-details #test-config-display .config-item .config-value {
  font-size: 0.875rem;
  color: #000;
  font-family: "Monaco", "Menlo", "Courier New", monospace;
}
#control-middle-column #test-config-container #test-config-content .test-details #test-config-display .config-item .config-value.code-block {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 16px;
  border-radius: 4px;
  overflow-x: auto;
  max-height: 600px;
  overflow-y: auto;
  font-size: 0.8rem;
  line-height: 1.5;
}
#control-middle-column #test-config-container #test-config-content .test-details #test-config-display .config-item .config-value.code-block code {
  font-family: "Monaco", "Menlo", "Courier New", monospace;
  white-space: pre;
}
#control-middle-column #test-config-container #test-config-content .test-details #test-config-display .config-item.evaluator-code {
  padding: 12px 12px 0 12px;
}
#control-middle-column #test-config-container #test-config-content .test-details #test-config-display .config-item.evaluator-code .config-value {
  margin-bottom: 12px;
}
#control-middle-column #test-config-container #test-config-content .test-data-sections {
  display: none;
}
#control-middle-column #test-config-container #test-config-content .test-actions {
  margin-top: 24px;
  padding: 24px;
  background: #f9f9f9;
  border-radius: 8px;
}
#control-middle-column #test-config-container #test-config-content .test-actions .test-run-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
#control-middle-column #test-config-container #test-config-content .test-actions #run-test-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding-left: 12px;
  padding-right: 20px;
  background: #f5f5f5;
  width: fit-content !important;
  border: none;
  border-radius: 25px;
  white-space: nowrap;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
#control-middle-column #test-config-container #test-config-content .test-actions #run-test-btn:hover {
  background: #059669;
  color: white;
}
#control-middle-column #test-config-container #test-config-content .test-actions #run-test-btn:disabled {
  background: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}
#control-middle-column #test-config-container #test-config-content .test-actions #run-test-btn .material-symbols-outlined {
  font-size: 20px;
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown {
  position: relative;
  display: inline-block;
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 30px;
  padding: 0 8px 0 12px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger .dropdown-value {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  min-width: 40px;
  text-align: left;
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger .dropdown-arrow {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, color 0.2s ease;
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger:hover {
  border-color: rgba(0, 0, 0, 0.3);
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger:hover .dropdown-arrow {
  color: rgba(0, 0, 0, 0.8);
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger.active {
  border-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-trigger.active .dropdown-arrow {
  transform: rotate(180deg);
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu .dropdown-item {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: background 0.15s ease;
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu .dropdown-item:hover {
  background: rgba(16, 185, 129, 0.1);
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu .dropdown-item.selected {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu .dropdown-item:first-child {
  border-radius: 6px 6px 0 0;
}
#control-middle-column #test-config-container #test-config-content .test-actions .custom-dropdown .dropdown-menu .dropdown-item:last-child {
  border-radius: 0 0 6px 6px;
}
#control-middle-column #test-config-container #test-config-content .test-actions #copy-config-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0px 18px;
  background: #f5f5f5;
  border: none;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
#control-middle-column #test-config-container #test-config-content .test-actions #copy-config-btn:hover {
  background: #7e22ce;
  color: white;
}
#control-middle-column #test-config-container #test-config-content .test-actions #copy-config-btn:disabled {
  background: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}
#control-middle-column #test-config-container #test-config-content .test-actions #copy-config-btn .material-symbols-outlined {
  font-size: 20px;
}
#control-middle-column #test-config-container #test-config-content .test-actions .test-status {
  flex: 1;
}
#control-middle-column #test-config-container #test-config-content .test-actions .test-status #test-status-text {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}
#control-middle-column #test-config-container #test-config-content .test-actions .test-status #test-status-text.running {
  color: #3b82f6;
  font-weight: 600;
}
#control-middle-column #test-config-container #test-config-content .test-actions .test-status #test-status-text.success {
  color: #10b981;
  font-weight: 600;
}
#control-middle-column #test-config-container #test-config-content .test-actions .test-status #test-status-text.error {
  color: #ef4444;
  font-weight: 600;
}

#tests-markdown-container,
#tests-request-container,
#tests-response-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#tests-output-codemirror-wrapper,
#tests-markdown-codemirror-wrapper,
#tests-request-codemirror-wrapper,
#tests-response-codemirror-wrapper {
  height: 100%;
  width: 100%;
  flex: 1;
  min-height: 0;
}
#tests-output-codemirror-wrapper .cm-editor,
#tests-markdown-codemirror-wrapper .cm-editor,
#tests-request-codemirror-wrapper .cm-editor,
#tests-response-codemirror-wrapper .cm-editor {
  height: 100%;
}
#tests-output-codemirror-wrapper .cm-editor .cm-scroller,
#tests-markdown-codemirror-wrapper .cm-editor .cm-scroller,
#tests-request-codemirror-wrapper .cm-editor .cm-scroller,
#tests-response-codemirror-wrapper .cm-editor .cm-scroller {
  max-height: 100%;
  overflow-y: scroll !important;
  padding-bottom: 40px;
}
#tests-output-codemirror-wrapper .cm-editor .cm-content,
#tests-markdown-codemirror-wrapper .cm-editor .cm-content,
#tests-request-codemirror-wrapper .cm-editor .cm-content,
#tests-response-codemirror-wrapper .cm-editor .cm-content {
  padding-bottom: 40px;
}
