html,
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(/assets/material-icons/iconfont/material-icons.woff2) format('woff2'),
    url(/assets/material-icons/iconfont/material-icons.woff) format('woff');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px; /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
}

/* App Styling */

.suite-field {
    display: flex;
    flex-direction: column;
    flex: 1;
}

label, .suite-required-legend {
    font-size: 0.9rem;
    color: black;
}

label, .suite-required-legend, button {
    text-transform: capitalize;
}

.suite-field input {
    flex: 1;
}

#suite-add-location, #suite-add-tenant, .flex-column {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.suite-required label::after, .suite-required-legend::before {
    content: "*";
    margin-left: 0.25em;
    margin-right: 0.25em;
    font-weight: 900;
    color: red;
}

.suite-field-validation-failed input, .suite-field-validation-failed textarea, .suite-field-validation-failed select {
    border: 1px solid red;
}

.suite-validation-error {
    color: red;
    font-size: 0.9rem;
}

.testForm {
    padding: 1em;
}

.suite-latlon-fields, .suite-latlon-field {
    display: flex;
}

.suite-latlon-fields {
    gap: 0.5rem;
    @media (max-width: 425px) {
        flex-direction: column;
    }
}

.suite-latlon-field {
    flex-direction: column;
    flex: 0.5;
}

textarea {
    height: 3rem;
}

select, textarea, input[type=text] {
    padding: 0.25rem;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}