/* Extracted from main.css: desktop help popup (src/Help.hx) */

table.help-table {
    border: solid black 1px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
}

td.help-defn {
    padding-left: 32px;
}

hr.help {
	width: 100%;
	height: 1.5px;
	border-width: 0;
	background-color: #888;
	margin-top: 4px;
	margin-bottom: 4px;
}

center.help-heading {
	width: 100%;
	background-color: #e8e8ee;
	padding-top: 8px;
	padding-bottom: 8px;
	border: solid 1px #555;
	font-size: larger;
	margin-top: 8px;
	margin-bottom: 32px;
}

span.help-heading {
    font-weight: bold;
    color: blue;
}

img.help {
    /*transform: scale(0.7);*/
    width: 90%;
}

div.popup-help {
    background-color: ghostwhite;
    width: 75%;
    height: 85%;
    padding-top: 4px;
    padding-bottom: 20px;
    padding-left: 16px;
    padding-right: 16px;
}

img.help-inline-image {
    height: 22px;
    margin-right: 12px;
    vertical-align: middle;
    padding-bottom: 3px;
}

div.help-container {
    display: flex;
    height: 100%;
}

div.help-sidebar {
    min-width: fit-content;
    overflow-y: auto;
    padding-right: 16px;
    padding-top: 8px;
}

div.help-body {
    height: 100%;
    overflow-y: auto;
    padding-left: 8px;
    padding-right: 24px;
    flex-grow: 1;
    padding-top: 12px;
    padding-left: 16px;
}

div.help-row {
    display: flex;
}

div.help-column-40 {
    flex: 40%;
}

div.help-column-60 {
    flex: 60%;
}

div.help-column-30 {
    flex: 30%;
}

div.help-column-70 {
    flex: 70%;
}

div.help-column-20 {
    flex: 20%;
}

div.help-column-80 {
    flex: 80%;
}

div.help-column-50 {
    flex: 50%;
}

button.next {
    margin-top: 4px;
    margin-left: 8px;
    margin-right: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 4px;
    outline: none;
	font-weight: bold;
    color: black;
    background-color: gold;
    border: 1px solid dimgrey;
    width: 100px;
    float: right;
}

button.next:hover {
    background-color: deepskyblue;
}

button.popup-help {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 4px;
    margin-bottom: 4px;
    border-radius: 4px;
    outline: none;
	font-weight: bold;
    color: black;
    background-color: gold;
    border: 1px solid dimgrey;
    width: 120px;
}

button.popup-help:hover {
    background-color: deepskyblue;
}

button.selected-help {
    border: 3px solid mediumblue;
    margin-top: 2px;
    margin-bottom: 2px;
}

