body {
    min-height: 100vh;
}

html {
    height: 100vh;
}

.app-logo {
    width: 100%;
}

.dashboard-logo {
    max-width: 400px;
}

.welcome-dashboard-container {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
}

.welcome-card {
    max-width: 400px;
}

#app {
    display: flex;
    flex-wrap: nowrap;
    height: 100vh;
    max-height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
}

.login-page {
    width: 100%;
    background-color: rgb(243 244 246);
    display: grid;
    place-items: center;
}

.login-card {
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    width: 360px;
}

.login-form label {
    font-size: 12px;
}

.login-form input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    border-radius: 6px;
    border-color: rgba(199, 210, 254, 0.5);
}

.remember-me {
    padding-left: 5px;
}

.forgot-password {
    font-size: 12px;
}

.login-logo {
    width: 100px;
}

.sidebar-logo {
    width: 100%;
    background-color: #fff;
}

.sidebar-wrapper {
    display: flex;
    flex-direction: column;
}

.orphan-applink {
    display: grid;
    height: 100%;
    place-items: center;
}

.user-avatar-40 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.search-result-container {
    max-height: 200px;
    overflow-y: scroll;
}

.reset-search-btn {
    position: absolute;
    right: 20px;
    top: 12px;
    padding: 10px;
    cursor: pointer;
}

.search-result {
    border-bottom: 1px solid var(--bs-gray-300);
    padding: 3px 0;
    margin: 0;
}

.selected-user-highlight {
    background-color: #0d6efd25;
}

.search-result .checkbox {
    padding-right: 0;
    display: flex;
}

.search-result .username {}

.search-result .email {
    font-size: 12px;
}

.remove-selected-user-badge {
    cursor: pointer;
}

.icd-translation-form .language-item {
    margin-right: 10px;
}

.icd-translation-form .language-item input[type="checkbox"] {
    margin-right: 3px;
}

.icd-translation-form textarea {
    width: 100%;
    height: 200px;
}