/* move the step and toolbar to the right side */
/* #main-container,
.sky-toolbar-container {
  flex-direction: row-reverse;
} */


.sky-quick-bar-item-container img {
  max-height: 50px;
}

.sky-quick-bar {
  width: fit-content;
}

.sky-toolbar-container {
  display: none;
}

.sky-quick-bar .dev-only {
  display: none;
}

#container-top-right {
  display: none;
}

canvas.loading {
  filter: blur(2px);
}

#watermark {
  display: none;
}

/*#region Label popup */
.label-modal .modal-dialog {
  position: fixed;
  top: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 250px;
  margin: 0;
  pointer-events: auto;
  z-index: 1050;
  font-size: 11px;
  cursor: default;
}

.modal-backdrop {
  display: none !important;
}

.label-modal .modal-content {
  border-radius: 6px;
  border: 1px solid #ccc;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  background: #fff;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}

.label-modal .modal-header {
  color: #fff;
  background-color: #303030;
  border: none;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  width: 100%;
  box-sizing: border-box;
}

.label-modal .modal-title {
  font-size: 13px;
  margin: 0;
  color: #fff;
}

.label-modal .modal-body {
  flex: 1 1 auto;
  overflow: hidden;
  background-color: #ffffff;
  padding: 6px 10px;
}

.label-modal .modal-footer {
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 6px 10px;
}

.label-modal .modal-footer .btn {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 3px;
}

.label-modal .modal-footer .btn-primary {
  background-color: #9ACD32;
  color: white;
  border: none;
  transition: background-color 0.3s, color 0.3s;
}

.label-modal .modal-footer .btn-primary:hover {
  background-color: #6c8f23;
  color: white;
}

.label-modal .modal-footer .btn-primary:active {
  background-color: #9acd32;
  color: black;
}

.label-modal .modal-footer .btn-cancel {
  background-color: #fdbe02;
  color: white;
  border: none;
  transition: background-color 0.3s, color 0.3s;
}

.label-modal .modal-footer .btn-cancel:hover {
  background-color: #eca40e;
  color: white;
}

.label-modal .modal-footer .btn-cancel:active {
  background-color: #f4bb44;
  color: black;
}


.label-modal .modal-footer .btn-primary.btn-disabled {
  background-color: #999 !important;
  color: #eee !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

.label-modal .modal-footer .btn-primary.btn-disabled:hover {
  background-color: #999 !important;
  color: #eee !important;
}

body.modal-open {
  overflow: visible !important;
  padding-right: 0 !important;
}

.no-focus-modal {
  pointer-events: none;
}

.no-focus-modal .modal-content {
  pointer-events: auto;
}

.parameter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 6px;
  gap: 6px;
}

.parameter-thumbnail {
  display: none;
}

.parameter-input {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.parameter-input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
}

.parameter-input-title {
  flex: 0 0 40px;
  text-align: left;
  font-weight: 500;
  color: #333;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: -5px;
}

.parameter-input .parameter-input-field {
  width: 150px;
}

.parameter-input-field {
  flex-shrink: 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 2px 4px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  text-align: left;
}

.parameter-input-field:focus {
  outline: none;
  border-color: #69962f;
  box-shadow: 0 0 3px rgba(105, 150, 47, 0.4);
}

.parameter-input-unit {
  flex-shrink: 0;
  font-size: 14px;
  color: #666;
}

html,
body {
  overflow: hidden !important;
}

/*#endregion*/