.content-section {
  background: #ffffff;
  padding: 30px 50px;
  border: 0px solid #dddddd;
  border-radius: 0px;
  margin-bottom: 0px;
}

/* Expandable Channel List Styling */
.expandable-channel-list {
  font-family: monospace;
  cursor: pointer !important;
  display: inline;
}

.expandable-channel-list:hover {
  color: #004499;
}

.expandable-channel-list .channel-list-content,
.expandable-channel-list .channel-list-full {
  font-family: monospace;
  color: #0066cc;
}

.expandable-channel-list:hover .channel-list-content,
.expandable-channel-list:hover .channel-list-full {
  color: #004499;
}

/* JSON Editor Checkbox Visibility Fix */
/* Override Jet's checkbox hiding for JSON editor array tables (checkboxes without labels) */
/* Target checkboxes inside table cells with boolean schema type (array context) */
td[data-schematype="boolean"] input[type="checkbox"] {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  opacity: 1 !important;
  position: relative !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
}

.content-section2 {
  background: #e4edf7;
  padding: 30px 50px;
  border: 0px solid #dddddd;
  border-radius: 0px;
  margin-bottom: 0px;
}

.flex-container {
    display: flex;
}

.flex-child1 {
    flex: 1;
    vertical-align: middle;
    padding: 20px 50px;
}
.flex-child2 {
    flex: 1;
    vertical-align: middle;
    padding: 20px 20px;
    margin-left: 50px;
    alignment:  right;
}  
.flex-child3 {
    flex: 1;
    vertical-align: middle;
    padding: 20px 20px;
    margin-left: 10px;
    alignment:  right;
}
.flex-child4 {
    flex: 1;
    vertical-align: middle;
    padding: 10px 10px;
    alignment:  right;
}
.content-section3 {
  background: #ffffff;
  padding: 5px 5px;
  border: 0px;
  border-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 0px;
}
.content-section4 {
  background: #e4edf7;
  padding: 10px 15px;
  border: 0px;
  border-radius: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 0px;
}
.popup1 {
  width: 500px;
  font-weight: normal !important;
  box-shadow:     0      5px      10px       #666;
  border-radius: 10px;
}

.autosave-inline-disabled {
  pointer-events :none;
  opacity: 0.5;
}

a.inline-deletelink {
  display: none !important;
}

#subjectlog_housing_form a.inline-deletelink,
#subjectlog_waterdeprivation_form a.inline-deletelink,
#subjectlog_fooddeprivation_form a.inline-deletelink {
  display: inline-block !important;
}

.autosave-status-idle {
  opacity: 0.5;
}

/* Dropdown Button */
.dropbtn {
  color: white;

  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #fafafa;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.name_container {
  display: flex;
}

input.remove-button:not(.has_original),
input.duplicate-button:not(.has_original) {
  display: none;
}

.help-modal__content {
    display: none;
    border-top: none;
}

.help-modal__content.active {
    display: block;
}

.help-modal__footer {
}

.help-modal__tab.button {
    all: unset; /* Reset all inherited button styles */
    display: inline-block; /* Ensure tabs are block-level elements */
    text-align: center; /* Center the text */
}

input[type=checkbox].toggle {
    display: inline-block!Important; /* Make it visible */
}