
a.dx-link.dx-link-icon {
    color: var(--color-background-lighter);
}

    a.dx-link.dx-link-icon:hover {
        color: var(--color-accent);
    }

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-background-light);
    border-radius: var(--default-border-radius);
}
::-webkit-scrollbar-thumb {
    background: var(--color-background-lighter);
    border-radius: var(--default-border-radius);
}
    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-accent);
    }


.dx-row-focused td {
    background-color: var(--color-background-lighter) !important;
    border-color: var(--color-background-lighter) !important;
}

.group-with-bg > .dx-field-item-content {
    background: var(--color-background-light);
    border-radius: 5px;
    padding: 5px 10px;
}

.group-with-bg .dx-form-group-caption {
    text-align: center;
    display: block;
    font-weight: normal !important;
}

.dx-widget {
    font-family: var(--font-text);
}
/* field label style */
#app .dx-field-item-label-text, #app .dx-field-item-label-content {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 600;
}

/* field label style with label location left */
#app .dx-field-item-label-location-left .dx-field-item-label-text, #app .dx-field-item-label-location-left .dx-field-item-label-content {
    font-weight: 200;
    padding-right: 20px;
    font-size: 1rem;
}

/* focus effect */
#app .dx-texteditor.dx-state-active.dx-editor-filled, 
#app .dx-texteditor.dx-state-active.dx-editor-outlined, 
#app .dx-texteditor.dx-state-active.dx-editor-underlined,
#app .dx-texteditor.dx-state-focused.dx-editor-filled,
#app .dx-texteditor.dx-state-focused.dx-editor-outlined, 
#app .dx-texteditor.dx-state-focused.dx-editor-underlined {
    border-color: var(--color-accent);
}

/* hover effect */
#app .dx-texteditor.dx-state-hover {
    border-color: var(--color-accent);
    filter: brightness(var(--hovereffect-brightness));
}

/* form group label style*/
#app .dx-form-group-caption {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

/* form group content style */
#app .dx-form-group-with-caption > .dx-form-group-content {    
    padding-top: 0px;
    margin-top: 5px;
    border-top: none;
    padding-bottom: 10px;
}

#app .dx-lookup-arrow::before {
    content: '\f027';
}

body {
    overscroll-behavior-y: contain;
}