:root {
    --pico-font-size: 14px;
}

body {
    background-color: #f5f0ea;
    min-height: 100vh;
    color: #000000;
}

.logo svg {
    height: 78px;
}

.btn-close svg {
    height: 50px;
    margin-top: auto;
    margin-bottom: 0;
    /*margin-right: 0px;*/
    /*margin-left: auto;*/
}

#start {
    display: grid;
    background-color: transparent;
    grid-template-areas: "status go"
        "upload go";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 0;
    gap: 20px;
    box-shadow: none;
    justify-content: stretch;
    align-items: stretch;
    min-height: calc(100vh - 350px);
}

#start section {
    margin-bottom: 0;
    padding: 36px;
    border-radius: 24px;
}

#status {
    background-color: #f1d962;
    grid-area: status;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#go {
    background-color: white;
    grid-area: go;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#upload {
    background-color: #cfb045;
    grid-area: upload;
    border-bottom-left-radius: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
}

#upload div {
    flex: 1 1 50%;
}

#status {
    font-size: 46px;
    font-weight: bold;
}

#upload form {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 1rem 2rem;
}

#go .btn {
    font-size: 32px;
    border-radius: 70px;
}

#go h2 {
    font-size: 32px;
    margin-bottom: 1em;
    font-weight: 300;
}

#file-input {
    border: solid white 1px;
    padding: 2rem;
    height: auto;
    border-radius: 25px;
}


footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    background-color: #f5f0ea;

}

.cc {
    font-size: 12px;
}

.attribution {
    display: flex;
    flex-direction: column;
}

.btn {
    background-color: #37917B;
    border-radius: 55px;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
}

.choices {
    min-width: 18rem;
    margin-top: -14px;
    width: 100%;
}

.actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.hidden {
    display: none;
}

.disabled-cell {
    background-color: #D9EAEF !important;
    color: #000;
}