/* DEFAULT STYLING */
*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: 'Segoe UI';
}

* {
    margin: 0;
    padding: 0;
    border: 0 solid transparent;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    height: 100vh;
    line-height: 1;
    text-rendering: optimizeSpeed;
    background-color: #f8f8f8;
    overflow: hidden;
}

/* Buttons */
.button {
    display: inline-block;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    transition: .2s;
    cursor: pointer;
    width: 100%;
}

.button.medium {
    font-size: 1.2rem;
}

.button.solid-green {
    background-color: #159e69;
    color: white;
}

.button.dark-green {
    background-color: #eef3f0;
    color: #232f2a;
}

.button.button.dark-green:hover {
    background-color: #e3eee8;
}

.button.solid-green:hover {
    background-color: #0ebd7a;
}

.button.scale:hover {
    transform: scale(1.05);
}

.button.scale:active {
    transform: none;
}

/* Portal */
input {
    width: 100%;
}

#portal {
    display: flex;
    align-items: center;
    max-width: 400px;
    height: 100%;
}

form input,
form textarea {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: white;
    background-clip: padding-box;
    border-radius: 0.25rem;
    background: #f3f3f3;
    outline: none;
    font-family: Arial, sans-serif;
}

input,
textarea,
form input,
form textarea {
    width: 100%;
}

input[type="color"],
input[type="checkbox"] {
    height: 50px;
}

fieldset {
    border-radius: .4em;
    border: 1px solid slategray;
}

table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
    border-style: hidden;
    box-shadow: 0 0 0 0.5px slategrey;
    overflow: hidden;
    border-radius: .4em;
    transform: rotate(0deg);
    text-align: center;
}

table th {
    border: 1px solid #ddd;
    padding: 8px;
    font-size: 1rem;
    text-align: center;
}

table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #073a02;
    color: white;
}


table td input {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    border: none;
    outline: none;
    font-family: Arial, sans-serif;
    transition: .2s;
}

table th button {
    color: white;
}

table td button,
table th button {
    font-size: inherit;
    border: none;
    background-color: transparent;
    font-weight: bold;
}

table td button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 8px;
}