charset "UTF-8";
/*!
* GThang specific styles
*/

/* Navbar styles */

.dropdown-menu li {
position: relative;
}
.dropdown-menu .dropdown-submenu {
display: none;
position: absolute;
left: 100%;
top: -7px;
}
.dropdown-menu .dropdown-submenu-left {
right: 100%;
left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
display: block;
}

/* Split Container Styles */

* {
    box-sizing: border-box;
}

.split-container {
	display: flex;
	height: calc(100vh - 83px); /* latter = total height of everything above */
	width: 100%;
}

.resizer[data-direction='horizontal'] {
	background-color: var(--bs-secondary);
	cursor: ew-resize;
	height: 100%;
	width: 4px;
}

.resizer[data-direction='vertical'] {
	background-color: var(--bs-secondary);
	cursor: ns-resize;
	height: 4px;
	width: 100%;
}

.split-container-left {
	min-height: 0;
	width: 30%;
	display: flex;
	flex-direction: column;
}

#graphics-status-column {
	width: 60%;
}

.split-container-right {
	flex: 1; /* remaining width */
	min-width: 0;
	overflow-y: hidden;
	display: flex;
	flex-direction: column;
}

.split-container-top {
	min-height: 0;
	height: 55%;
	display: flex;
}

#graphics-pane {
	height: 85%;
	padding: 4px;
}

#divGraphics {
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100%;
}



.split-container-bottom {
	flex: 1; /* Remaining height */
	display: flex;
	overflow-y: auto;
}

.split-container-pane {
	height: 100%;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

/* Form menu styles */

/* Remove default bullets */
.form-menu-ul, #outer-form-menu-ul {
  list-style-type: none;
}

/* Remove margins and padding from the parent ul */
#outer-form-menu-ul {
  margin: 0;
  padding: 0;
}

/* Style the caret/arrow */
.form-menu-caret {
  cursor: pointer;
  user-select: none; /* Prevent text selection */
}

/* Create the caret/arrow with a unicode, and style it */
.form-menu-caret::before {
  content: "\25B6";
  color: black;
  display: inline-block;
  margin-right: 6px;
}

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.form-menu-caret-down::before {
  transform: rotate(90deg);
}

/* Dummy class for JS */
.form-menu-default-active {
}

/* Hide the nested list */
.form-menu-nested {
  display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.form-menu-active {
  display: block;
}

a.form-menu-item {
	text-decoration: none;
	color: var(--bs-body-color);
}

a.form-menu-item-activated {
	text-decoration: underline;
}

a.form-menu-item-inactivated {
	text-decoration: none;
}

.pane-show {
	display: block;
}

.pane-hide {
	display: none;
}

.pane-background {
	background-color: #ffffe0;
}

/* Dummy class for JS */
.param-form-pane {
}

/* Parameter styles */

.input-col-min-width {
	min-width: 145px;
}

button.dropdown-menu-button {
	border: 1px solid #ced4da;
}

a.menu-item-link {
	display:flex;
}

span.menu-item-left {
	padding-right: 10px;
}

span.menu-item-right {
	flex: 1;
	text-align: right;
	white-space: nowrap;
}

/* Dummy for JS */
input.input-param {
}
input.spinable {
}
input.check-param {
}

button.spin-button {
	border: 1px solid #ced4da;
}

input.display-none {
	display: none;
}

span.span-err-ind {
	color: var(--bs-danger);
}