.input-group {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    margin-top: 10px;
}

.input {
    width: 80%;
    height: 90px;
    padding: 15px;
    margin-right: 10px;
    font-size: 16px;

    border: none;
    border-radius: 5px;
    outline: none;
    background: rgba(0,0,0,0.1);
    transition: all 0.15s ease-in;
    color: white;
    resize: none;
}

.input:hover {
    background: rgba(0,0,0,0.2);
}

.input:focus {
    background: rgba(0,0,0,0.2);
}

#run, #modify, #done, #cancel, #clear {
    width: 100%;
    height: 90px;
    font-size: 24px;

    border: none;
    border-radius: 5px;
    outline: none;
    opacity: 1;
    background: rgba(0,0,0,0.1);
    transition: background 0.15s ease-in;
    color: white;
    cursor: pointer;
}

#run {
    width: 80%;
    margin: 0 auto;
    margin-top: 10px;
}

#modify, #done, #cancel, #clear {
    height: 100%;
    padding: 15px 15px;
}

#modify {
    margin-bottom: 10px;
}

#run:hover, #modify:hover, #done:hover, #cancel:hover, #clear:hover {
    background: rgba(0,0,0,0.2);
}

#run:disabled, #modify:disabled, #cancel:disabled, .mode-buttons:disabled {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    opacity: 0.5;
}

#run.zoomed {
    width: 100%;
}

.mode-buttons {
    width: 40%;
    height: 100px;
    margin: 5px;
}

#highlight-mode {
    display: none;
}

.dot {
    background-color: white;
    border-radius: 50%;
    position: absolute;
}

#inpaint {
    opacity: 0;
    z-index: -1;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease-in-out;
}

#inpaint.visible {
    opacity: 0.5;
    z-index: 2;
}

#redo, #undo, #clear {
    font-size: 32px;
}


/* Laptop view */
@media screen and (min-width: 1200px) {
    #run {
        width: 100%;
    }
    .input-group {
        width: 100%;
        margin-top: 10px;
    }
    .input {
        width: 80%;
        margin-right: 10px;
    }

    .right.zoomed {
        width: 40%;
    }
    
    .left.zoomed {
        width: 60%;
    }
    .content.zoomed {
        padding-top: calc(150%);
    }
}