div.ioText {
    position: relative;
    display: flex;
    max-width: 96ch;
    align-items: stretch;
}

div.ioText textarea {
    width: 100%;
}

#encryptInput{
    height: 7em;
}

#encryptMemo{
    height: auto;
}

#encryptedOutput{
    height: auto;
}

#decryptInput{
    height: auto;
}

#decryptedOutput{
    height: 7em;
}


/* div.ioText textarea.small {
    width: 100%;
    height: 5em;
} */

.ioText div.toolbar {
    display: flex;
    row-gap: 0;
    flex-direction: column;
    /* position: absolute;
    right: 0;
    top: 0; */
    margin-left: 1px;

    /* margin: 2px 2px 1px 0px; */
    padding: 0px;

    border: none;
    /* background-color: #0C0C0C; */
}

div.toolbar button {
    padding: 4px;
    cursor: pointer;

    width: 3.6ch;
    height: 3.6ch;
    color: #000;

    margin-bottom: 1px;
    border-radius: 3px;

    background-color: #333333;
    border: none;
    /* border-color: transparent; */
}


div.toolbar button:disabled {
    background-color: #333333!important;
    filter: opacity(90%);
    /* background-color: #2e2e2e!important; */
    /* border-color: transparent; */
}

button img[src$=".svg"] {
    height: 100%;
    /* Filter color generator: https://codepen.io/sosuke/pen/Pjoqqp */
    /* filter: invert(84%) sepia(24%) saturate(172%) hue-rotate(349deg) brightness(107%) contrast(96%); */
    filter: invert(97%) sepia(8%) saturate(701%) hue-rotate(319deg) brightness(89%) contrast(90%);
    aspect-ratio: 1/1;
}

div.ioText button:hover {
    background-color: #5a5a5a;
}

div.ioText button:active {
    background-color: #3f3b36;
}


div.ioText button:disabled,
div.ioText button:disabled:hover {
    opacity: 50%;
    cursor: default;
    background-color: #505050e0;
}

/* /* 
.svg-button img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 /1;
    aspect-ratio: 1 /1;
}


.svg-button path {
    fill: red !important;
}  */