.myForm label {
/* display: inline-block;
 vertical-align: top; */
 width: 150px;
 text-align: right;
 margin: 4px 4px 4px 4px;
}

div.errorMsgs {
  margin-left: 160px;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid red;
  width:50%;
}

.leftindent { margin-left:160px; margin-bottom:20px; }

.myForm input, .buttonClass {
/* display: inline-block; 
 vertical-align: bottom; */
 margin: 4px 4px 4px 4px;
}

.myForm input:not([type="submit"]) {
  min-width: 300px;
}

/* DataTables 3 paints row states with an inset box-shadow built from these
   custom properties -- bare "R, G, B" triplets, not colours -- so setting
   background-color on a row or cell has no effect. */
:root {
  --dt-row_background-hover:    251, 150, 146; /* #fb9692 */
  --dt-row_background-selected: 247, 110, 104; /* #f76e68 */
  --dt-row-text_color-selected:  33,  37,  41; /* dark text; white fails contrast on the salmon */
}

/* DataTables applies the hover tint at 7.5% alpha; this site wants the full
   salmon, so restore the intended strength. */
table.table.dataTable.table-hover > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgb(var(--dt-row_background-hover));
}

/* Selected license key row in #memListTable (set by index.php). */
#memListTable tbody tr {
  cursor: pointer;
}

table.formTable td {
  vertical-align: middle;
}

.mytable td, .mytable th { padding: .5rem; }

.logo img {
    padding: 0;
    display: block;
    width: auto;
    height: auto;
    max-height: 100%;
    image-rendering: auto;
    position: relative;
    z-index: 2;
    height: 100%;
    height: auto;
    transition: opacity .4s ease-in-out;
}
img, a img {
    border: 0;
    padding: 0;
    margin: 0;
    display: inline-block;
    max-width: 100%;
    height: auto;
    image-rendering: optimizeQuality;
}

body { 
    padding: 10px; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 768px) {
  .myForm label {
    width: 100%;
    text-align: left;
  }
  
  div.errorMsgs {
    margin-left: 0;
    width: 100%;
  }
  
  .leftindent {
    margin-left: 0;
  }
}
