﻿@import "site.css";

body {
}

fieldset {
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 0.35em;
    padding-bottom: 0.625em;
    padding-left: 0.75em;
    padding-right: 0.75em;
}

.customResponsiveArea .controls {
    margin-top: 1em;
}

.wrapper {
    min-height: 100vh;
    background-color: #FAFAFA;
    opacity: .85;
    padding: 15px;
    box-shadow: 3px 3px 3px #FAFAFA;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 22px;
}

.formList {

    margin-right: auto;
    margin-left: auto;
    width: fit-content;
}

.tableContents {
    margin-right: auto;
    margin-left: auto;
    width: fit-content;
}

@@media (min-width: 600px) {
    .customResponsiveArea .labelFieldPair > * {
        display: inline-block;
        vertical-align: top;
    }

        .customResponsiveArea .labelFieldPair > *:first-child {
            text-align: right;
            width: 20%;
        }

        .customResponsiveArea .labelFieldPair > *:last-child {
            width: 75%;
            width: calc(80% - 1em);
        }
}

@@media (min-width: 900px) {
    .customResponsiveArea .controls {
        float: right;
        margin-top: 0;
    }

    .customResponsiveArea .labelFieldPair {
        display: inline;
    }

        .customResponsiveArea .labelFieldPair > * {
            display: inline;
        }

            .customResponsiveArea .labelFieldPair > *:first-child {
            }

            .customResponsiveArea .labelFieldPair > *:last-child {
                padding-right: 2em;
            }
}



