@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-size: 14px;
    font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    background: #fbfbfb;
}

.logo {
    fill: black;
}

.title {
    display: block;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.125;
    margin-bottom: 24px;
}

.btn-kh {
    border-radius: 100px;
    padding: 10px 30px;
    font-size: 16px;
    color: white;
    font-weight: 600;
    display: inline-block;
    background: black;
}

    .btn-kh:hover {
        background: black;
        color: white;
    }


.kh-file-input {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    max-width: 400px;
    border-radius: 8px;
}

    .kh-file-input .input-hint {
        display: block;
        cursor: pointer;
        margin-bottom: 0 !important;
        display: block;
        min-width: 400px;
        background: white;
        border-radius: 8px;
        border: none;
        padding: 8px 12px;
        outline: none;
    }

    .kh-file-input .filename {
        display: block;
        background: #182b30;
        padding: 8px 12px;
        color: white;
        border-radius: 0px 0px 8px 8px;
    }

.kh-table {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #EBEBEB;
}

    .kh-table tr {
        background: white;
    }

        .kh-table tr:hover {
            background: #FBFBFB;
        }

        .kh-table tr:first-of-type {
            background: #FBFBFB;
        }

    .kh-table th {
        padding: 8px;
        font-weight: 800;
        border-bottom: 1px solid #EBEBEB;
    }

    .kh-table td {
        padding: 8px;
        border-bottom: 1px solid #EBEBEB;
    }

/* #region Layout */
.column-layout {
    display: flex;
    min-height: 100vh;
}

    .column-layout .column-left {
        padding-top: 24px;
        padding-right: 24px;
    }

        .column-layout .column-left .menu {
            max-width: 218px;
            margin-top: 24px;
            background: white;
            padding: 24px;
            border-radius: 28px 28px 0px 28px;
        }

            .column-layout .column-left .menu a {
                display: block;
                font-size: 16px;
                margin-top: 12px;
                color: #182B30;
                text-decoration: none;
                font-weight: 500;
            }

                .column-layout .column-left .menu a:hover {
                    text-decoration: underline;
                }

        .column-layout .column-left .client-logo-container {
            text-align: center;
            margin-top: 24px;
        }

            .column-layout .column-left .client-logo-container svg {
                fill: black;
            }

    .column-layout .column-right {
        padding-top: 24px;
        padding-left: 24px;
        flex-grow: 1;
    }
/* #endregion */

/* #region Login */
.page-login .logo {
    position: absolute;
    top: 24px;
    left: 24px;
}

.page-login .content-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-login .login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .page-login .login-form .title {
        display: block;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -.02em;
        line-height: 1.125;
        margin-top: 24px;
        margin-bottom: 32px;
    }

    .page-login .login-form label {
        display: block;
        font-weight: 600;
        margin-bottom: 4px;
        margin-top: 24px;
    }

        .page-login .login-form label:first-of-type {
            margin-top: 0px;
        }

    .page-login .login-form input.text-box {
        display: block;
        min-width: 300px;
        background: white;
        border-radius: 8px;
        border: none;
        padding: 8px 12px;
        outline: none;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .page-login .login-form .bottom-row {
        margin-top: 24px;
        display: flex;
        justify-content: center;
    }

        .page-login .login-form .bottom-row .btn {
            flex-grow: 1;
        }

.message {
    display: block;
    margin-top: 24px;
    font-weight: bold;
}

.message.color-green {
    color: green;
}
.message.color-red {
    color: red;
}

.form-error {
    display: block;
    max-width: 300px;
    color: red;
    font-weight: 600;
    margin-top: 8px;
}

    .form-error.general {
        display: block;
        max-width: 300px;
        color: red;
        font-weight: 600;
        margin-top: 24px;
    }

.form-hint-bottom {
    display: block;
    margin-top: 24px;
    text-align: center;
}

/* #endregion */

/* #region Import */
.page-import .button-row {
    margin-top: 24px;
}

.page-import .kh-file-input {
    margin-top: 24px;
    margin-bottom: 4px;
}

.page-import .error {
    display: block;
    color: red;
    font-weight: 600;
}

.page-import .subtitle {
    display: block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.125;
    margin-top: 24px;
    margin-bottom: 8px;
}

.page-import .btn-row-results {
    display: flex;
    margin-top: 16px;
    justify-content: end;
}
/* #endregion */
