body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

body .back {
    padding: 24px;
    font-size: 24px;
    margin: 0;
}

body table {
    border-spacing: 0 24px;
}
body tr td {
    font-size: 18px;
}
body tr td input {
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid black;
    padding:5px;
    margin: 0 12px;
}
body tr td select {
    font-size: 18px;
    border-radius: 5px;
    padding: 5px;
    margin: 0 12px;
}

body button {
    border: 1px solid black;
    border-radius: 5px;
    padding: 10px;
    margin-left: 356px;
}

body .wp-config-wrapper {
    padding: 24px;
    background-color: lightgray;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
  }
  
  /* Tooltip text */
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 500px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 12px 6px;
    border-radius: 6px;
    margin-top: -8px;
    
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }