html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

.web-container {
    display: flex;
    min-height: 100vh;
    padding-top: 64px;
}

    .web-container .menu {
        width: 300px;
        padding-right: 24px;
        border-right: 1px solid grey;
        text-align: right;
    }

        .web-container .menu .logo {
            font-weight: 500;
            font-style: none;
        }

        .web-container .menu a {
            text-decoration: none;
        }

        .web-container .content {
            flex-grow: 1;
            padding-left: 16px;
        }



h1 {
    font-size: 24px;
    margin-bottom: 16px;
}

.mb-20 {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
}

.ned-input {
    border-radius: 4px;
    border: 1px solid lightgrey;
    padding: 4px 8px;
    width: 100%;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group.checkbox label {
    white-space: nowrap;
}
.form-group.checkbox .ned-input {
    width: auto;
}

.form-buttons {
    display: flex;
    gap: 8px;
}

.form-buttons.right {
    justify-content: end;
}

.btn.primary {
    background: black;
    color: white;
}

.validation-summary-errors {
    color: #dc3545 !important;
}

th, td {
    padding: 8px;
    text-align: left;
}

th {
    border: 1px solid lightgrey;
    border-bottom: 2px solid lightgrey;
}
td {
    border: 1px solid lightgrey;
}