:root {
    --font-color: #ffffff;
    --table-header-fill-color: #ffffff16;
    --table-border-stroke: 1px solid #ffffff33;
    --input-background-color: #ffffff12;
    --button-background-color: #ffffff12;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--font-color);
    background-color: #ffffff10;
    margin: 0;
    padding: 0.65rem;
    overflow: auto;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-thumb {
    background-color: #ffffff66;
    border-radius: 6px;
}

h2 {
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    font-weight: 400;
    margin: 0 0 0.65rem;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 0.75rem;
}

th,
td {
    font-weight: 400;
    border: var(--table-border-stroke);
    padding: 0.34rem 0.42rem;
    text-align: left;
    vertical-align: top;
}

th {
    background-color: var(--table-header-fill-color);
    font-size: 0.92rem;
}

td {
    font-size: 0.75rem;
    line-height: 1.4;
}

input[type="text"] {
    width: 100%;
    font-size: 0.75rem;
    background-color: var(--input-background-color);
    padding: 0.35rem 0.45rem;
    border: 1px solid #ffffff22;
    color: #ffffff;
}

button {
    border: 1px solid #ffffff33;
    background: var(--button-background-color);
    padding: 0.45rem 0.62rem;
    cursor: pointer;
    color: #ffffff;
    margin: 0 0.4rem 0.7rem 0;
    font-family: inherit;
    font-size: 0.76rem;
    transition: background-color 180ms ease, border-color 180ms ease;
}

button:hover {
    background: #ffffff24;
    border-color: #ffffff88;
}

#outputTable td:nth-child(2) {
    word-break: break-word;
}

@media (max-width: 768px) {
    body {
        padding: 0.6rem;
    }

    th,
    td {
        font-size: 0.72rem;
        padding: 0.34rem;
    }

    button {
        width: 100%;
        margin-right: 0;
    }
}
