body {
    font-family: Arial, sans-serif;
    background-color: rgb(40, 40, 40);
    color: rgb(200, 200, 200);
    padding: 20px;
}

button {
    margin: 10px 0;
}

div.main {
    display: flex;
}

div.column {
    border: 1px solid transparent;
    border-radius: .75rem;
    display: inline-block;
    background-color: rgb(60, 60, 60);
    margin: 10px 7px 10px 0;
    padding: 10px;
}

div.mainButtons button {
    display: inline-block;
}

h2 {
    color: rgb(255, 255, 255);
}

button {
    background-color: #404040;
    border: 1px solid transparent;
    border-radius: .75rem;
    display: block;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-weight: 600;
    line-height: 1.5rem;
    padding: .75rem 1.2rem;
    text-align: center;
}

button:hover {
    background-color: #374151;
}

button:focus {
    box-shadow: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

textarea,
input[type="text"] {
    width: 100%;
    margin: 5px 0;
    border: 2px solid #505050;
    border-radius: 4px;
    resize: none;
    background-color: rgb(38, 38, 38);
    color: rgb(200, 200, 200);
}

.radio-container {
    display: flex;
    align-items: center;
}

.radio-container img {
    margin-right: 5px;
}

.radio-container input[type="radio"] {
    display: none;
}

.radio-container label {
    display: block;
    color: rgb(255, 255, 255);
    cursor: pointer;
    /* margin-right: 15px; */
    color: rgb(200, 200, 200);
    padding: 10px;
    border-radius: 5px;
}

.radio-container label img {
    width: 20px;
    height: 20px;
    vertical-align: bottom;
}

.radio-container input[type="radio"]:checked+label {
    background: #272727;
}

.existingCode {
    display: inline-block;
    margin-top: auto;
    padding: 10px 0 0 0;
}

.icon {
    height: 32px;
    width: 32px;
}

.results {
    margin: 8px 0
}

.results img {
    vertical-align: middle;
}

.results span {
    margin: 2px 0;
    display: table;
}