

div {
  display:inline-block;
}

.dark-theme {
  background-color: black;
  color: white;
}

.light-theme {
    background-color: white;
    color: black;
}
label {
  background-color: #447ab7;
  color: white;
  padding: 0.5rem;
  font-family: sans-serif;
  border-radius: 0.4rem;
  cursor: pointer;
  margin-top: 1rem;
}

h1, h2 {
    display: inline;
}
.grid-container {
    display: grid;
    grid-template-columns: 10fr 1fr;
    grid-gap: 0px; /** was 20 **/
}

.noborders td {
        border:0;
    }

.inputindent {
padding: 10px;  
}

table {
margin: 8px;

}

.tab {
    margin-left: 10px;
}

th {
font-family: Arial, Helvetica, sans-serif;
font-size: .8em;
background: #447ab7;
color: #FFF;
padding: 1px 1px;
border-collapse: separate;
border: 1px solid #000;
border-radius: 0.4rem;
}

td {
font-family: Arial, Helvetica, sans-serif;
font-size: .8em;
border: 1px solid #FFF;
text-align: center;
width: 250px;
}

.kader {
  border: 1px solid #555;
}

.tip {
  position: relative;
  display: inline-block;
  line-height: 18px;
}

.tip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #fdff91;
    color: red;
    text-align: center;
    border-radius: 10px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: -100%; // was 150
    left: 50%;
    margin-left: -100px;
    border-color: #a0a0a0;
    border-style: ridge;
}

.tip:hover .tooltiptext {
  visibility: visible;
}