/*
    Landon Hansen
    2/17/2024
    String Search Assignment
*/

* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

main {
    display: grid;
    width: 100%;
    max-width: 1280px;

    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 2fr;

    /* column-gap: 10px; */

    margin: auto;

    /* border: 1px solid black; */
}

input:disabled {
    background-color: rgb(250, 250, 250 );
    cursor: not-allowed;
}

main > div {
    padding: 10px;
}

main > div:not(#inputArea) > label { 
    display: block;
    margin-top: 10px;
}

main > div:not(#inputArea) > input { 
    width: calc(100% - 10px);
}

/* the input section */
main > div:first-of-type {
    grid-column: 1 / 4;
    text-align: center;
}
