strong{
    color:rgb(83, 0, 146);
    font-size: 1.2em;
    text-align: center;
}

label{
    margin-right: 1em;
}

input[type="checkbox"], input[type="radio"]{
    display: inline;
    accent-color: rgb(81, 0, 148);
    height: 1.5em;
    width: 1.5em;
}

input[type="text"], input[type="number"], textarea{
    background-color: rgb(180, 180, 180);
    border: 3px solid rgb(83, 0, 146);
    border-radius: 4px;
    color: black;
    font-size: 1.2em;
    outline: none;
    text-align: center;
}

input[type="text"], input[type="number"]{
    min-width: 4em;
    max-width: 4em;
}

input[type="text"], textarea:focus{
    box-shadow: 0 0 5px 2px #1d7d6a;
    border-color:rgb(35, 70, 58);
}

input[type="text"], input[type="number"]{
    width: 4em;
}

.get-data{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    height: 8em;
    text-align: center;
    line-height: 1em;
    padding: 0px;
    font-size: 1em;
}

button{
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0.5em;
    margin-top: 1em;
    font-size: 1em;
}

button.in-table{
    margin-bottom: .5em;
}

button, #help-header{
    background-color: #1d7d6a;
    border: 3px solid rgb(35, 70, 58);
    border-radius: 4px;
    color: white;
    transition: all .08s linear;
}

button:hover, #help-header:hover{
    background-color: #005d4a;
    box-shadow: 0 0 5px 2px #1d7d6a;
}

button:active, #help-header:active{
    background-color: #50ae8d;
}

.copy-button{
    margin-bottom: 1.5em;
}

#clean{
    margin-bottom: 1em;
}

#starting-data{
    display: flex;
    align-items:flex-start;
    justify-content: space-around;
}

.data-part{
    padding-top: .5em;
    border: 1px solid black;
    border-radius: 4px;
    margin-top: 0px;
    text-align: justify;
    width: 45%;
    margin: 0;
}


li{
    display: flex;
    align-items: start;
    justify-content: right;
    width: 95%;
    text-align: right;
    margin-top: 0cm;
    font-size: 1em;
    margin-bottom: 1em;
}

li:hover{
    background-color: rgba(0, 119, 255, 0.2);
}

#count-digits{
    width: 3em;
    text-align: center;
}

#result{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
    margin-top: 1em;
    overflow-x: hidden;
}

.hidden{
    display: none;
}

.visisble{
    display: block;
}

#copy{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
    width: 5cm;
    min-height: 1.5cm;
}

.red{
    color: red;
}

.green{
    color: green;
}