.fileInput {
    display: none;
}

.fileInputLabel {
    color: black;
    width: fit-content;
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
}

body {
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
}

textarea {
    resize: none;
}

#form {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 30rem;
    max-width: 90vw;
    box-sizing: border-box;
}

#result {
    max-width: 90vw;
    width: 30rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 1rem;
}

.copyButton {
    width: 5rem;
}

.error {
    color: red;
}

.resultArea {
    height: 40rem;
    display: block;
}
