html,
body {
    min-height: 100vh;
    margin: 0;
}

body {
    background: #74B8FC;
    background: linear-gradient(180deg, rgba(116, 184, 252, 1) 0%, rgba(0, 69, 172, 1) 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

td,
th {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0 auto;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-bar-text img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

#submitButton {
    max-width: 75px;
    max-height: 23px;
    padding: 0 12px;
}

#randomButton {
    max-width: 150px;
    max-height: 23px;
    padding: 0 12px;
}

#output {
    overflow-x: auto;
    max-width: 100%;
}

@media (max-width: 480px) {
    #output {
        overflow-x: auto;
        max-width: 100%;
    }

    table {
        width: 100%;
        table-layout: fixed;
    }

    td,
    th {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}