* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  display: flex;
  min-height: 100vh;
  background-color: #ffffff;
  color: #333;
  font-size: 14px;
  padding-top: 75px;
}

.nested-wrapper.white {
  background-color: #ffffff;
}

.nested-wrapper.white::before {
  background-color: #7c7cbb;
}

.logo {
  width: auto;
  height: 46px;
  margin-left: 6px !important;
  margin-top: 2px;
  fill: #fff;
}

.main-header {
  background-color: rgb(64 64 64);
  color: white;
  padding: 15px 20px;
  text-align: left;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-column {
  width: 23%;
  flex-shrink: 0;
  background-color: #e4e5e5;
  border-right: 1px solid #e5e5e5;
  overflow-y: auto;
  height: calc(100vh - 60px - 30px);
  position: fixed;
  /*top: 75px;*/
  left: 0;
  z-index: 20;
  padding-top: 15px;
  padding-bottom: 25px;
}

.workflow-column h3 {
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.select-env-button {
  width: 80%;
  padding: 8px 12px;
  margin-bottom: 20px;
  border: none;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 13px;
}

.workflow-items {
  display: flex;
  flex-direction: column;
}

.workflow-item {
  padding: 12px 15px;
  color: #333;
  background-color: #fff;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.4;
  text-align: left;
  border-left: 3px solid transparent;
  text-decoration: none;
}


.workflow-item:hover {
  background-color: #a450a3;
  color: #fff;
  /*color: #32329f;*/
}
.workflow-step-icon {
  fill: #8D248C;
}

.workflow-item.active .workflow-step-icon {
  fill: #fff;
}

.workflow-item:hover .workflow-step-icon {
  fill: #fff;
}

.workflow-item.active {
  background-color: #8D248C;
  /*font-weight: 500;*/
  color: #fff;
  border-left: 3px solid #a450a3;
}

.sidebar {
  width: 18%;
  flex-shrink: 0;
  background-color: #f9f9f9;
  border-right: 1px solid #e5e5e5;
  padding-top: 16px;
  overflow-y: auto;
  height: calc(100vh - 60px);
  position: fixed;
  /*top: 75px;*/
  left: 23%;
  z-index: 10;
}

.search-container {
  padding: 12px 15px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.search-container input {
  width: 100%;
  padding: 8px 12px 8px 30px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
}

.search-icon {
  position: absolute;
  left: 25px;
  top: 20px;
  color: #777;
}

.menu-item {
  padding: 12px 15px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: anywhere;
  color: #333;
  font-size: 14px;
  border-left: 3px solid transparent;
  text-decoration: none;
  line-height: 1.4;
}

.menu-item .http-method {
  white-space: nowrap;
}

.menu-item.active {
  background-color: #e9ecef;
  font-weight: 500;
  border-left: 3px solid #a450a3;
}

.menu-item:hover {
  background-color: #f0f0f0;
}

.menu-item svg {
  margin-right: 10px;
  min-width: 16px;
}

.menu-item .chevron {
  margin-left: auto;
  transition: transform 0.2s;
}

.menu-item.expanded .chevron {
  transform: rotate(90deg);
}

.badge {
  display: inline-block;
  padding: 2px 4px;
  background-color: #28a745;
  color: white;
  font-size: 10px;
  border-radius: 3px;
  font-weight: bold;
  margin-left: 5px;
}

.content-container {
  display: flex;
  flex: 1;
  margin-left: 41.0%;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 1px solid #cccccc;
}

.code-column {
  width: 35%;
  min-width: 35%;
  background-color: rgb(38, 50, 56);
  color: #fff;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 75px);
  height: auto;

}

.no-endpoints-message {
  left: 15%;
  position: fixed;
  padding: 70px;
}

.api-info {
  padding: 30px;
  border-bottom: 1px solid #cccccc;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.api-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.download-btn {
  display: inline-block;
  margin-left: 0.5em;
  background: #445256;
  border: 1px solid #5f6e73;
  color: #ddd;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-decoration: none;
  font-weight: normal;
}

.download-btn:hover {
  background: #5f6e73;
  color: #fff;
}


.api-contact {
  margin-top: 15px;
  font-size: 14px;
}

.api-description {
  margin-top: 20px;
  color: #555;
  line-height: 1.5;
  padding-top: 10px;
}

.endpoint-section {
  border-bottom: 1px solid #cccccc;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.endpoint-section + .endpoint-section {
  margin-top: 0;
  border-top: none;
}

.endpoint-section.category {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.endpoint-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  /*padding: 20px 30px;*/
  padding: 0 30px;
  /*border-bottom: 1px solid #cccccc;*/
  background-color: #fff;
}

/* Main content area */
.main-content {
  padding: 20px 30px;
  background-color: #fff;

  overflow: auto;
}

.endpoint-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
}

.endpoint-subtitle .http-method {
  top: -2px !important;
  position: relative;

}

.endpoint-description {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}


.api-method {
  display: flex;
  align-items: center;
  margin: 20px 0;
  background-color: #f7f7f7;
  border-radius: 4px;
  padding: 10px;
}

.http-method {
  display: inline-block;
  padding: 3px 6px;
  border-radius: 2px;
  color: white;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 10px;
}

.get {
  background-color: rgb(47, 129, 50);
}

.post {
  background-color: rgb(24, 111, 175);
}

.put {
  background-color: rgb(230, 126, 34);
}

.patch {
  background-color: rgb(191, 88, 29);
}

.delete {
  background-color: #f93e3e;
}

.endpoint-path {
  font-family: monospace;
  font-size: 14px;
}


.connecting-line {
  position: absolute;
  top: 0;
  left: -50px;
  right: 0;
  height: 1px;
  background-color: #cccccc;
  z-index: 5;
}

.method-label {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 15px;
  border-radius: 4px 4px 0 0;
  margin-bottom: 0;
  font-family: monospace;
  background-color: rgb(17, 23, 26);
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.method-chevron {
  margin-left: auto;
  transition: transform 0.3s ease;
  color: #aaa;
}

.method-label.active .method-chevron {
  transform: rotate(180deg);
}

.server-urls-dropdown {
  display: none;
  background-color: rgb(28, 35, 39);
  border-top: 1px solid rgb(38, 50, 56);
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 0 0 4px 4px;
  position: relative;
  z-index: 5;
}


.method-label.active + .server-urls-dropdown {
  display: block;
}

.server-url-item {
  margin-bottom: 15px;
}

.server-url-item:last-child {
  margin-bottom: 0;
}

.server-url-label {
  color: #aaa;
  font-size: 12px;
  margin-bottom: 5px;
}

.server-url-value input {
  width: 100%;
  background-color: rgb(17, 23, 26);
  border: 1px solid rgb(38, 50, 56);
  color: #e6e6e6;
  padding: 8px 10px;
  font-family: monospace;
  font-size: 11px;
  border-radius: 3px;
}


.server-url-value {
  position: relative;
}

.copy-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background: #445256;
  border: 1px solid #5f6e73;
  color: #ddd;
  cursor: pointer;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: #5f6e73;
  color: #fff;
}

.code-column .endpoint-path {
  color: #aaa;
  font-family: monospace;
}


.params-section {
  margin: 20px 0;
}

.params-title {
  font-size: 14px;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  margin: 20px 0 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #cccccc;
}

.auth-section {
  background-color: #f9f9f9;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.auth-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.auth-header svg {
  margin-right: 10px;
}


.param-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  margin-bottom: 20px;
  table-layout: fixed;
}

.param-table tr {
  vertical-align: top;
}


.nested-cell {
  padding: 0 !important;
  border-bottom: none !important;
}

.nested-wrapper {
  background-color: rgba(0, 0, 0, 0.02);
  position: relative;
  border-right: 2px solid rgba(124, 124, 187, 0.2);
  padding-right: 15px;
  padding-bottom: 5px;
  border-bottom-right-radius: 4px;
}

.nested-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: #7c7cbb;
}

.nested-table {
  width: 95%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  margin-left: 25px;
}

.param-name-cell {
  width: 25%;
  padding: 10px 10px 10px 0;
  vertical-align: top;
  border-left: 1px solid #7c7cbb;
  position: relative;
  line-height: 20px;
}

td .param-name-cell {
  padding: 10px 0 10px 0 !important;
}


tr.last + tr.nested-content .nested-table {
  margin-left: 0 !important;
}




tr.firstlast .param-name-cell {
  background-image: none !important;
}


tr:first-child .param-name-cell,
tr.last .param-name-cell,
tr.first .param-name-cell {
  border-left-width: 0;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 1px 100%;
}

tr:first-child .param-name-cell,
tr.first .param-name-cell {
  background-image: linear-gradient(to bottom,
  transparent 0%,
  transparent 22px,
  #7c7cbb 22px,
  #7c7cbb 100%);
}

tr.last .param-name-cell {
  background-image: linear-gradient(to bottom,
  #7c7cbb 0%,
  #7c7cbb 22px,
  transparent 22px,
  transparent 100%);
}

tr.last + tr .param-name-cell {
  border-left-color: transparent;
}

tr.last:first-child .param-name-cell,
tr.first.last .param-name-cell {
  background: none !important;
  border-left-color: transparent;
}

.nested-table .param-name-cell {
  border-left: 1px solid #7c7cbb;
  padding-left: 20px;
  padding-right: 10px;
}

.nested-table tr:first-child .param-name-cell,
.nested-table tr.first .param-name-cell {
  background-image: linear-gradient(to bottom,
  transparent 0%,
  transparent 22px,
  #7c7cbb 22px,
  #7c7cbb 100%);
}

.nested-table tr.last .param-name-cell {
  background-image: linear-gradient(to bottom,
  #7c7cbb 0%,
  #7c7cbb 22px,
  transparent 22px,
  transparent 100%);
}

.nested-table tr:last-child .param-details-cell {
  border-bottom-color: rgba(124, 124, 187, 0.3);
}

.nested-table tr:last-child .param-details-cell::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 15px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.02);
  border-bottom-right-radius: 4px;
}

.nested-content:last-child .nested-wrapper {
  border-bottom: 2px solid rgba(124, 124, 187, 0.2);
}


.param-name {
  vertical-align: top;
  line-height: 20px;
  white-space: nowrap;
  font-size: 13px;
  font-family: 'Ubuntu Mono', monospace, 'Courier New', Courier;
}

.param-name.deprecated {
  text-decoration: line-through;
  color: #707070;
}

.param-details-cell {
  border-bottom: 1px solid #9fb4be;
  padding: 10px 5px 10px 10px;
  width: 75%;
  box-sizing: border-box;
}

tr.expanded .param-details-cell {
  border-bottom: none;
}

.nested-table .param-details-cell {
  border-bottom: 1px solid #9fb4be;
}

.nested-table tr.last .param-details-cell {
  border-bottom: none;
}

.param-required {
  color: #d41f1c;
  font-size: 0.9em;
  font-weight: normal;
  margin-left: 25px;
  /*line-height: 1;*/
  display: block;
}

.param-type {
  color: #666;
  font-size: 12px;
  margin-bottom: 8px;
}

.param-enum {
  color: #666;
  font-size: 12px;
  margin-bottom: 8px;
}

.enum-value {
  background-color: rgba(38, 50, 56, 0.05);
  color: rgba(51, 51, 51, 0.9);
  padding: 0 5px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  font-family: 'Ubuntu Mono', monospace, 'Courier New', Courier;
  border-radius: 2px;
  font-size: 10px;
}

.param-desc {
  color: #666;
  word-break: break-word;
  line-height: 1.4;
}

.param-connector {
  color: #7c7cbb;
  font-family: 'Ubuntu Mono', monospace, 'Courier New', Courier;
  margin-right: 10px;
}

.param-connector::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 1px;
  background: #7c7cbb;
}

.param-connector::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  background: #7c7cbb;
  height: 7px;
}

.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;

  padding-left: 25px;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
}

.arrow-icon {
  height: 18px;
  width: 18px;
  min-width: 18px;
  vertical-align: middle;
  transition: transform 0.2s ease-out;
  transform: rotateZ(-90deg);
  margin-left: 5px;
}

.toggle-btn.expanded .arrow-icon {
  transform: rotateZ(0);
}

.response-items {
  margin-top: 25px;
}

.response-item {
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.response-success {
  background-color: rgba(40, 167, 69, 0.1);
}

.response-error {
  background-color: rgba(220, 53, 69, 0.1);
  color: #777;
}

.response-code {
  font-weight: bold;
  margin-right: 10px;
}

.success-code {
  color: #28a745;
}

.error-code {
  color: #dc3545;
}

.response-desc {
  color: #555;
}

.response-header {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.response-success .response-header {
  background-color: rgba(40, 167, 69, 0.1);
}

.response-error .response-header {
  background-color: rgba(220, 53, 69, 0.1);
}

.response-icon {
  font-size: 18px;
  font-weight: bold;
  margin-right: 5px;
  width: 15px;
  text-align: center;
  display: inline-block;
  transition: transform 0.3s ease;
}

.response-success .response-icon {
  color: #28a745;
  transition: transform 0.2s ease;
}

.response-error .response-icon {
  color: #dc3545;
}

.response-content {
  display: none;
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f9f9f9;
  transition: all 0.2s ease;
}

.expandable.active .response-content {
  display: block;
}

.expandable.active .response-icon {
  transform: rotate(90deg);
}

.response-schema {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
}

.schema-select {
  background-color: transparent;
  border: none;
  border-bottom: 1px dashed #999;
  margin-left: 5px;
  padding: 2px 5px;
  color: #333;
  cursor: pointer;
  font-size: 12px;
  text-transform: none;
}

.schema-content {
  font-size: 14px;
}

.schema-property {
  margin: 8px 0;
  line-height: 1.5;
}

.schema-toggle {
  display: inline-block;
  width: 15px;
  color: #666;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.schema-toggle.active {
  transform: rotate(90deg);
}

.schema-name {
  color: #0078d7;
  margin-right: 10px;
}

.schema-type {
  color: #666;
  font-size: 12px;
  margin-left: 15px;
}

.schema-nested-content {
  margin-left: 20px;
  border-left: 1px solid #ddd;
  padding-left: 10px;
}

.example-title {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 15px;
}

.code-block {
  background-color: rgb(17, 23, 26);
  border-radius: 0 0 4px 4px;
  padding: 15px;
  font-family: monospace;
  margin-bottom: 10px;
  overflow-x: auto;
  font-size: 13px;
}

.code-block pre {
  color: #e6e6e6;
  white-space: pre-wrap;
}

.json-key {
  color: #9cdcfe;
}

.json-string {
  color: #ce9178;
}

.json-number {
  color: #b5cea8;
}

.json-boolean {
  color: #569cd6;
}

.json-null {
  color: #569cd6;
}

.buttons {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.button {
  background: #445256;
  border: 1px solid #5f6e73;
  color: #ddd;
  cursor: pointer;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.button:hover {
  color: #fff;
}

.server-urls {
  margin: 15px 0;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.server-url {
  display: block;
  padding: 8px 0;
}

.server-url span {
  font-weight: 500;
}

.code-examples {
  padding: 20px;
  overflow: auto;
}


.code-examples-header {
  padding: 15px 20px;
  color: #fff;
  font-size: 18px;
  border-bottom: 1px solid #444;
  position: sticky;
  top: 0;
  z-index: 2;
}

.method-tag {
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  margin-right: 8px;
  border-radius: 4px;
}

.api-footer {
  padding: 15px 30px;
  border-top: 1px solid #cccccc;
  color: #777;
  font-size: 13px;
  display: flex;
  align-items: center;
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.api-footer-sidebar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  background: #f9f9f9;
  border-top: 1px solid #e5e5e5;
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
}

.api-footer img,
.api-footer-sidebar img {
  margin-right: 5px;
  height: 16px;
}

.endpoint-section {
  position: relative;
}

@media (max-width: 1280px) {
  .code-column {
    width: 40%;
    min-width: 40%;
  }

  .workflow-column {
    width: 15%;
  }

  .sidebar {
    left: 15%;
    width: 18%;
  }

  .content-container {
    margin-left: 33%;
  }
}

@media (max-width: 1024px) {
  body {
    padding-top: 75px;
    flex-direction: column;
  }

  .workflow-column {
    width: 100%;
    position: static;
    height: auto;
    max-height: 30vh;
    overflow-y: auto;
    /*top: 75px;*/
    left: 0;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }

  .sidebar {
    width: 100%;
    position: static;
    height: auto;
    max-height: 30vh;
    left: 0;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }

  .content-container {
    flex-direction: column;
    margin-left: 0;
  }

  .code-column {
    width: 100%;
    height: auto;
    position: relative;
  }

  .endpoint-section .code-examples {
    margin-top: 20px;
    background-color: rgb(38, 50, 56);
    border-radius: 4px;
    color: #fff;
    padding: 20px;
  }

  .code-examples {
    height: auto !important;
  }

  .main-content {
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .param-table, .nested-table {
    table-layout: auto;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .param-name-cell {
    width: 40%;
    position: relative;
    /*padding: 10px 0 10px 10px !important;*/
  }

  .nested-wrapper {
    margin-left: 20px !important;
    position: relative;
    background-color: transparent !important;
  }

  .nested-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px !important;
    width: 1px;
    background-color: #7c7cbb !important;
    display: block !important;
  }

  .param-name-cell {
    border-left: 1px solid #7c7cbb !important;
  }

  tr.first .param-name-cell, tr:first-child .param-name-cell {
    border-left: 0 !important;
    background-image: linear-gradient(to bottom,
    transparent 0%,
    transparent 22px,
    #7c7cbb 22px,
    #7c7cbb 100%) !important;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
    background-size: 1px 100% !important;
  }

  tr.last .param-name-cell {
    border-left: 0 !important;
    background-image: linear-gradient(to bottom,
    #7c7cbb 0%,
    #7c7cbb 22px,
    transparent 22px,
    transparent 100%) !important;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
    background-size: 1px 100% !important;
  }

  .param-connector {
    margin-right: 5px !important;
  }

  .param-connector::before {
    width: 15px !important;
  }

  .toggle-btn {
    padding-left: 10px !important;
    margin-left: 0 !important;
  }

  .nested-content {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .nested-table tr.first .param-name-cell {
    background-position: 0 0 !important;
  }

  .nested-table tr.last .param-name-cell {
    background-position: 0 0 !important;
  }

  .nested-table .param-name-cell {
    /*padding-left: 25px !important;*/
  }

  .param-required {
    display: inline-block;
    margin-left: 15px;
  }

}

@media (max-width: 576px) {
  .main-header {
    font-size: 14px;
  }
}

.env-selector {
  position: relative;
  /*margin-bottom: 20px;*/
  /*margin-top: 25px;*/
  width: 100%;
}

.env-dropdown {
  width: 100%;
  background-color: #fff;
  color: #333;
  padding: 18px 15px;
  border-bottom: 1px solid #bdbbbb;
  border-top: 1px solid #bdbbbb;
  border-left: 3px solid #a450a3;
  border-right: none;
  /*border-radius: 4px;*/
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
  text-align: center;
}

.chevron-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.chevron-icon-rotated {
  transform: translateY(-50%) rotate(180deg);
}

.env-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  /*border-radius: 4px;*/
  overflow: hidden;
  z-index: 100;
  /*margin-top: 2px;*/
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.env-option {
  padding: 12px 15px;
  cursor: pointer;
  /*color: white;*/
}

.env-option:hover {
  background-color: #a450a3;
  color: #fff;
}

.env-option.selected {
  background-color: #8D248C;
  color: #fff;
}

.env-dropdown:focus + .env-dropdown-menu,
.env-dropdown.active + .env-dropdown-menu {
  display: block;
}

/* Improved Fullscreen Lightbox Styles */

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; /* Use viewport units to ensure full width */
  height: 100vh; /* Use viewport units to ensure full height */
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999; /* Very high z-index to ensure it's above everything */
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox-image-container {
  flex: 1;
  width: 100%;
  height: calc(100% - 80px); /* Leave space for controls */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#lightbox-image {
  max-width: 95%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
  transform-origin: center center;
  cursor: grab;
}

#lightbox-image:active {
  cursor: grabbing;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover {
  color: #ccc;
}

.lightbox-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 10000;
}

.lightbox-btn {
  padding: 10px 20px;
  background-color: rgba(50, 50, 50, 0.8);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.lightbox-btn:hover {
  background-color: rgba(70, 70, 70, 0.9);
}

.zoom-in:hover {
  background-color: rgba(40, 167, 69, 0.8);
}

.zoom-out:hover {
  background-color: rgba(220, 53, 69, 0.8);
}

.reset-zoom:hover {
  background-color: rgba(0, 123, 255, 0.8);
}

.click-to-enlarge {
  text-align: center;
  color: #666;
  font-size: 12px;
  margin-top: 5px;
  font-style: italic;
}

/* Hover effects */
.workflow-diagram {
  position: relative;
  transition: transform 0.2s;
}

.workflow-diagram:hover {
  transform: scale(1.01);
}

#workflow-image {
  transition: filter 0.3s;
  cursor: zoom-in;
}

.workflow-diagram:hover #workflow-image {
  filter: brightness(1.05);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

.breadcrumbs li {
  flex: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li + li::before {
  content: "/";
  margin: 0 0.5em;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs li:last-child span {
  color: #ddd;
  font-weight: 500;
}

@media (max-width: 900px) {
  .breadcrumbs li:nth-child(2) {
    display: none;
  }
}

@media (max-width: 700px) {
  .breadcrumbs li:nth-child(3) {
    display: none;
  }
}

.scroll-top-button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  background-color: #444b54;
  border: 1px solid #555b66;
  color: white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
  opacity: 0.9;
}

.scroll-top-button:hover {
  background-color: #555b66;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.scroll-top-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.scroll-top-button svg {
  stroke: white;
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.scroll-top-button:hover svg {
  transform: translateY(-2px);
}

.scroll-top-button.visible {
  display: flex !important;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .scroll-top-button {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  .scroll-top-button svg {
    width: 18px;
    height: 18px;
  }
}

.workflow-column-header {
  background-color: #8D248C;
  color: white;
  padding: 15px 20px;
  text-align: center;
  margin: 0;
  border-bottom: 1px solid #34495e;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.workflow-column-header h3 {

  font-size: 24px;
  font-weight: 600;


  margin: 0;
  padding: 0;

  color: white;
  text-align: center;
  width: 100%;
}

.workflow-step-icon{
  /*margin-right: 8px;*/
}
.workflow-icon-cell{
  padding-right: 10px;
}
