.dropdown-menu li{
    padding: 5px;
}

.dropdown-menu li:hover{
    background: black;
    color: white;
}

.dropdown-menu li a:hover{
    background: black;
    color: white;
}

label{
    font-weight: bold;
    margin-top: 20px;
}

input{
    height: 50px;
}

input[type='checkbox'] {
    height: 10px;
    margin-bottom: 20px;
}
input[type='radio'] {
    height: 10px;
    margin-bottom: 20px;
}

.generated{
    border: 1px dashed black;
    padding: 10px;
}

.tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }