#run {
    width: 80%;
    height: 90px;
    font-size: 20px;

    display: flex;
    margin: 0 auto;
    margin-top: 10px;

    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
    outline: none;
    background: rgba(0,0,0,0.1);
    color: white;
    transition: all 0.15s ease-in;
    cursor: pointer;
}

#run-image {
    width: 24px;
    height: auto;
    display: block;
}

#run:hover {
    background: rgba(0,0,0,0.2);
}

#run:disabled {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    opacity: 0.5;
}

.checkbox-item {
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.checkbox-item input[type="checkbox"], .checkbox-item label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
}

@media screen and (min-width: 1200px) {
    #run {
        width: 100%;
    }
}