#dropzone {
    cursor: pointer;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 280px;
    box-sizing: border-box;
    padding: 24px;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: none;
}

#dropzone p {
    margin: 0;
    text-align: center;
    font-family: 'helvetica', arial black;
    font-size: 30px;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 1);
}

body {
    padding-bottom: 260px;
}

#wcn-results {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: min(900px, 90%);
    margin: 235px auto 260px;
    transform: none !important;
    border-radius: 18px;
    overflow: hidden;
    z-index: 2;
}

#wcn-results td,
#wcn-results th {
    padding: 10px 14px;
}

#wcn-form {
    position: absolute;
    top: 235px;
    bottom: 95px;
    left: 3%;
    width: 94%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: max-content max-content;
    align-content: center;
    align-items: center;
    column-gap: 14px;
    row-gap: 30px;
}

#wcn-form #Form1,
#wcn-form #Form2,
#wcn-form #Form3 {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
    transform: none;
    border-radius: 18px;
    overflow: hidden;
}

#wcn-form #Button {
    cursor: pointer;
    position: static;
    grid-column: 1 / -1;
    justify-self: center;
    transform: none;
    margin-top: 0;
    border-radius: 18px;
}

#wcn-form td,
#wcn-form th {
    padding: 10px;
    font-size: 15px;
}

#wcn-form .table-section-title {
    padding: 10px;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 900px) {
    #wcn-form {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        width: min(94%, 520px);
        margin: 235px auto 140px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    #wcn-form #Form1,
    #wcn-form #Form2,
    #wcn-form #Form3 {
        width: 100%;
        table-layout: fixed;
    }

    #wcn-form input {
        box-sizing: border-box;
        max-width: 100%;
        width: 100%;
    }

    #wcn-form #Button {
        align-self: center;
        grid-column: auto;
    }
}
