﻿body {
    font-weight: 400 !important;
}


@media screen and (min-width: 601px) {
    table {
        font-size: 0.7rem;
    }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
    table {
        font-size: 11px;
    }
}

.input-group-sm > .custom-select, .input-group-sm > .form-control, .input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .input-group-text {
    padding: .25rem .5rem;
    font-size: .7rem;
    line-height: 1.5;
}

.form-control-sm {
    height: calc(1.5em + .5rem + 2px);
    font-size: .7rem;
}

/* Stile base del pulsante */
.home-page-alert-button {
    background-color: #f0f0f0; /* Sfondo grigio chiarissimo */
    border: none; /* Nessun bordo */
    padding: 5px 10px; /* Spaziatura interna per rendere il pulsante piccolo */
    cursor: pointer; /* Puntatore a mano */
    background-image: url('/Content/img/detective-16.png'); /* Immagine di sfondo */
    background-repeat: no-repeat; /* Non ripetere l'immagine */
    background-position: center; /* Centrare l'immagine */
    background-size: 16px 16px; /* Dimensioni dell'immagine */
    width: 30px; /* Larghezza del pulsante */
    height: 30px; /* Altezza del pulsante */
    border-radius: 4px; /* Angoli leggermente arrotondati */
    transition: background-color 0.3s ease; /* Transizione graduale dello sfondo */
}

    /* Stile del pulsante al passaggio del mouse */
    .home-page-alert-button:hover {
        background-color: #e0e0e0; /* Colore leggermente più scuro quando viene selezionato */
    }

    /* Stile del pulsante quando viene premuto */
    .home-page-alert-button:active {
        background-color: #d0d0d0; /* Colore ancora più scuro quando viene cliccato */
    }



/* Stile base per input e select */
.navbar-input, .navbar-select {
    height: calc(1.2rem + 2px);
    font-family: Roboto;
    font-weight: bold;
    padding: 0.05rem 0.25rem;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    font-family: Roboto, Arial, sans-serif;
    font-size: 13px;
    width: 400px;
    box-sizing: border-box;
    color: #4e4e56;
    appearance: none; /* Rimuove lo stile nativo della select */
    -webkit-appearance: none; /* Rimuove lo stile nativo della select in Safari */
    -moz-appearance: none; /* Rimuove lo stile nativo della select in Firefox */
}

    /* Stile per l'input disabilitato */
    .navbar-input:disabled, .navbar-select:disabled {
        background-color: white;
        border: 1px solid #ccc;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        cursor: not-allowed;
        color: #4e4e56;
    }

    /* Stile per l'input readonly */
    .navbar-input[readonly], .navbar-select[readonly] {
        background-color: white;
        border: 1px solid #ccc;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        cursor: default;
    }

    /* Stile per la select in modalità readonly */
    .navbar-select[readonly] {
        pointer-events: none; /* Disabilita l'interazione */
        background-image: none; /* Rimuove la freccia della dropdown */
    }

    /* Stile per l'input e la select quando sono attivi */
    .navbar-input:focus, .navbar-select:focus {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        outline: none; /* Rimuove il contorno di default */
    }

    /* Stile per l'input e la select evidenziati */
    .navbar-input.highlighted, .navbar-select.highlighted {
        border: 1px solid #007bff;
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    }


.list-group-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-family: Roboto;
    font-weight: bold;
    padding: 5px; /* Riduce l'altezza dell'elemento */
    color: #525252;
}

    .list-group-item img {
        margin-right: 10px; /* Spazio tra l'immagine e il testo */
        height: 16px; /* Altezza dell'immagine */
    }

    .list-group-item button {
        margin-left: auto; /* Spinge il pulsante verso destra */
    }


.news-link {
    color: #00b386;
    font-size: 0.8rem;
    font-family: Roboto;
    font-weight: bold;
}

    .news-link:focus {
        color: #4da6ff;
        outline: none;
        text-decoration: none;
    }

.text-header {
    font-size: 0.7rem;
    color: #7b8a8b !important;
}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.7rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
/*.container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }*/

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    border: 2px solid #0033cc !important;
    background-color: #fff;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #f2f2f2;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        bottom: 100%;
        left: 50%;
        margin-left: -60px;
        /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
        opacity: 0;
        transition: opacity 1s;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

.bi {
    font-size: 0.85rem;
}

.btn {
    border-width: 0.1rem;
}

.btn-sm {
    border-radius: 5px;
    font-size: 0.75rem;
    min-height: 30px;
    font-family: "Roboto Medium", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif;
    font-weight: 500;
    padding: 0 5px 0 5px;
}


.btn-outline-dia {
    font-weight: normal !important;
    color: #484848 !important;
    background-color: #fff;
    background-image: none;
    border-width: 1px;
    font: small "Roboto Regular", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif !important;
    border-color: #dfdfdf !important;
}

    .btn-outline-dia:hover {
        color: #1a73e8 !important;
        background-color: #dfdfdf;
        border-color: #dfdfdf;
    }

    .btn-outline-dia:focus, .btn-outline-dia.focus {
        /*        
        -webkit-box-shadow: 0 0 0 0.2rem rgba(123, 138, 139, 0.5);
        box-shadow: 0 0 0 0.2rem rgba(123, 138, 139, 0.5);
        */
        box-shadow: none !important;
        color: #74aaf1 !important;
        background-color: #f2f2f2 !important;
    }

    .btn-outline-dia.disabled, .btn-outline-dia:disabled {
        color: #939e9f;
        background-color: #fff;
    }


.grid-font-small {
    font-size: 11px !important;
}

.round-button {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 20px;
    border-radius: 50%;
    color: #c7c7c7;
    text-align: center;
    text-decoration: none;
    background: white;
    border: 3px solid #c7c7c7;
    font-size: 12px;
}

    .round-button:active {
        border: 3px solid #c7c7c7;
        color: #c7c7c7;
    }

    .round-button:focus {
        border: 3px solid #c7c7c7;
        color: #c7c7c7;
    }

    .round-button:hover {
        border: 3px solid #1a73e8;
        color: #1a73e8;
    }

.header-standard-style {
    color: #666666 !important;
    background: #f2f2f2 !important;
    font-family: Roboto;
    font-weight: bold;
}

.card-header {
    /*background-color: white !important;*/
    font-size: 0.85rem;
    color: #666666 !important;
    background: #f2f2f2 !important;
    font-family: Roboto;
    font-weight: bold;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

    .card-header h1 {
        color: white !important;
    }

.bg-gradient {
    background: #D2E9FB;
    background: linear-gradient(90deg, #D2E9FB 0%, #FFFAF8 100%);
    font-size: 50px;
    font-weight: 300;
}


.bg-dark {
    background-color: #444 !important;
}

.bg-secondary {
    background-color: #4E5D6C !important;
}

.bg-light {
    background-color: white !important;
}

.bg-white {
    background-color: white !important;
}

.bg-main {
    background-color: #1A73E8 !important;
}

.bg-main-dark {
    background-color: #104fa2 !important;
}

.bg-main-extra {
    background-color: #092d5d !important;
}

.text-main {
    color: #1A73E8 !important;
}

.text-black {
    color: #000 !important;
}

.text-dark {
    color: #737373 !important;
}


.text-main-dark {
    color: #104fa2 !important;
}

.text-extra {
    color: #262626 !important;
}

.text-alarm {
    color: #cc2900 !important;
}

h4 {
    font-size: 1.1rem;
    color: #3d4652;
}

.f-md {
    font-size: 14px !important;
}

.f-lg {
    font-size: 16px !important;
}

.f-xl {
    font-size: 20px !important;
}


.f-300 {
    font-weight: 300;
}

.f-400 {
    font-weight: 400;
}

.f-500 {
    font-weight: 500;
}

.alert h4 {
    color: black;
    font-weight: bold;
}

a {
    color: #b3b3b3;
}

/* Stili per la sidebar */
/* Rimuove i puntini neri dalla sidebar */
.sidebar-navigation ul {
    list-style-type: none; /* Rimuove i puntini neri */
    padding-left: 0;
}

    .sidebar-navigation ul li {
        padding: 8px 8px 8px 32px;
    }

        .sidebar-navigation ul li a {
            text-decoration: none;
            font-size: small;
            color: #fff;
            font-weight: 500;
            display: block;
            transition: 0.3s;
        }

            .sidebar-navigation ul li a:hover {
                color: #f1f1f1;
            }

/* Stili per la sidebar */
.sidebar-navigation {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #339AF0;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: #fff;
}

a.closebtn:focus {
    color: #fff;
    outline: none;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important; /* Applica un'ombreggiatura al testo */
}

a.closebtn:hover {
    color: #fff;
    outline: none;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important; /* Applica un'ombreggiatura al testo */
}


/* Stili per lo sfondo scuro */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}


/* Stili per lo sfondo scuro */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}


.btn {
    cursor: pointer;
}

.label {
    font-size: 0.7rem;
    font-weight: bold;
    font-family: 'Roboto';
    color: #666666;
    margin-bottom: .0rem;
}

/*btn menu start*/

.btn-menu {
    background-color: #f2f2f2;
    border-color: #d9d9d9;
    padding: 5px;
    border-radius: 5px;
    color: #1a73e8 !important;
}

    .btn-menu:hover {
        color: #fff;
        background-color: #d9d9d9;
        border-color: white;
        border-width: 1px;
    }

    .btn-menu:focus, .btn-menu.focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(230,242,255,0.5);
        box-shadow: 0 0 0 0.2rem rgba(230,242,255,0.5)
    }

    .btn-menu.disabled, .btn-menu:disabled {
        color: #fff;
        background-color: #0051ae;
        border-color: #0051ae
    }

    .btn-menu:not(:disabled):not(.disabled):active, .btn-menu:not(:disabled):not(.disabled).active, .show > .btn-menu.dropdown-toggle {
        color: #fff;
        background-color: #f2f2f2;
        border-color: #0833AC
    }

        .btn-menu:not(:disabled):not(.disabled):active:focus, .btn-menu:not(:disabled):not(.disabled).active:focus, .show > .btn-menu.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 0.2rem rgba(230,242,255,0.5);
            box-shadow: 0 0 0 0.2rem rgba(230,242,255,0.5)
        }
/*btn menu end*/

.btn-primary {
    background-color: #1a73e8;
    border-color: #1a73e8;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #0833AC;
        border-color: #0833AC;
    }

    .btn-primary:focus, .btn-primary.focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(0,81,174,0.5);
        box-shadow: 0 0 0 0.2rem rgba(0,81,174,0.5)
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #fff;
        background-color: #0051ae;
        border-color: #0051ae
    }

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #1a73e8;
        border-color: #0833AC
    }

        .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
            -webkit-box-shadow: 0 0 0 0.2rem rgba(0,81,174,0.5);
            box-shadow: 0 0 0 0.2rem rgba(0,81,174,0.5)
        }

.btn-success {
    background-color: #26734d;
    border-color: #206040;
}

    .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
        color: #fff;
        background-color: #206040;
        border-color: #206040;
    }

    .btn-success:focus, .btn-success.focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgb(7 69 124 / 50%);
        box-shadow: 0 0 0 0.2rem rgb(7 69 124 / 50%);
    }

    .btn-success:hover {
        color: #fff;
        background-color: #206040;
        border-color: #206040;
    }

.snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #2d8659;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 40000;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

    .snackbar.anim {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 3s;
        animation: fadein 0.5s, fadeout 0.5s 3s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}


.alert-info {
    color: #4a4a4a;
    background-color: #fff;
    border-color: #f2f2f2;
}

/* styles.css */
.tooltip-helper {
    display: none; /* Nascondi il tooltip per default */
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 4px;
    z-index: 1000;
    min-width: 250px;
    max-width: 300px;
}

    .tooltip-helper::before {
        content: '';
        position: absolute;
        bottom: 100%; /* Posiziona la linguetta in alto */
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent #fff transparent;
    }


/* Versione 1: 2024-06-25 14:00:00 */

/* Contenitore dei pulsanti */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
}

    /* Stile generale per tutti i pulsanti */
    .button-container .btn {
        border: 1px solid #ccc;
        border-radius: 0;
        margin: 0;
    }

    /* Pulsante singolo */
    .button-container .single-btn {
        border-radius: 5px !important;
        border: 1px solid #ccc !important;
    }

    /* Primo pulsante visibile della riga */
    .button-container .first-btn {
        border-radius: 5px 0 0 5px !important;
        border-left: 1px solid #ccc !important;
    }

    /* Ultimo pulsante visibile della riga */
    .button-container .last-btn {
        border-radius: 0 5px 5px 0 !important;
        border-right: 1px solid #ccc !important;
    }

    /* Pulsanti intermedi (non il primo né l'ultimo) */
    .button-container .middle-btn {
        border-left: 1px solid #ccc !important; /* Aggiunge il bordo sinistro per i pulsanti intermedi - Versione 1: 2024-06-25 14:00:00 */
        border-right: none !important; /* Rimuove il bordo destro per evitare bordi doppi - Versione 1: 2024-06-25 14:00:00 */
    }

    /* Rimuove i bordi interni tra i pulsanti adiacenti */
    .button-container .btn + .btn {
        border-left: none !important; /* Rimuove il bordo sinistro dai pulsanti che seguono - Versione 1: 2024-06-25 14:00:00 */
    }

    /* Versione 2: 2024-06-25 14:30:00 */

    /* Pulsanti intermedi (non il primo né l'ultimo) */
    .button-container .middle-btn {
        /* border-left: 1px solid #ccc !important;  Versione 1: 2024-06-25 14:00:00 */
        /* border-right: none !important;  Versione 1: 2024-06-25 14:00:00 */
        border-left: 1px solid #ccc !important; /* Aggiunge il bordo sinistro per i pulsanti intermedi - Versione 2: 2024-06-25 14:30:00 */
        border-right: 1px solid #ccc !important; /* Aggiunge il bordo destro per i pulsanti intermedi - Versione 2: 2024-06-25 14:30:00 */
    }

    /* Rimuove i bordi interni tra i pulsanti adiacenti */
    .button-container .btn + .btn {
        /* border-left: none !important;  Versione 1: 2024-06-25 14:00:00 */
        border-left: 1px solid #ccc !important; /* Aggiunge il bordo sinistro ai pulsanti adiacenti - Versione 2: 2024-06-25 14:30:00 */
        /*border-right: none !important;*/ /* Rimuove il bordo destro dai pulsanti adiacenti - Versione 2: 2024-06-25 14:30:00 */
    }

    /* Versione 3: 2024-06-25 15:00:00 */

    /* Ultimo pulsante visibile della riga */
    .button-container .last-btn {
        border-radius: 0 5px 5px 0 !important; /* Arrotonda solo gli angoli destro - Versione 3: 2024-06-25 15:00:00 */
        border-right: 1px solid #ccc !important; /* Aggiunge il bordo destro - Versione 3: 2024-06-25 15:00:00 */
        border-left: 1px solid #ccc !important; /* Aggiunge il bordo sinistro per evitare bordi mancanti - Versione 3: 2024-06-25 15:00:00 */
    }

    /* Pulsante singolo */
    .button-container .single-btn {
        border-radius: 5px !important;
        border: 1px solid #ccc !important;
        border-left: 1px solid #ccc !important; /* Assicura che il bordo sinistro sia presente e arrotondato - Versione 3: 2024-06-25 15:00:00 */
    }

    /* Versione 4: 2024-06-25 15:30:00 */

    /* Pulsante singolo */
    .button-container .single-btn {
        border-radius: 5px !important;
        border: 1px solid #ccc !important;
        border-left: 1px solid #ccc !important; /* Assicura che il bordo sinistro sia presente e arrotondato - Versione 3: 2024-06-25 15:00:00 */
        border-right: 1px solid #ccc !important; /* Assicura che il bordo destro sia presente e arrotondato - Versione 3: 2024-06-25 15:00:00 */
    }

    /* Rimuove i bordi interni tra i pulsanti adiacenti */
    .button-container .btn + .btn {
        border-left: 1px solid #ccc !important; /* Aggiunge il bordo sinistro ai pulsanti adiacenti - Versione 4: 2024-06-25 15:30:00 */
        /*border-right: none !important;*/ /* Rimuove il bordo destro dai pulsanti adiacenti - Versione 4: 2024-06-25 15:30:00 */
    }

    /* Assicurati che le regole specifiche sovrascrivano correttamente */
    .button-container .last-btn {
        border-right: 1px solid #ccc !important; /* Aggiunge il bordo destro - Versione 4: 2024-06-25 15:30:00 */
    }

    /* Versione 5: 2024-06-25 16:30:00 */
    .button-container .btn + .btn {
        border-left: 1px solid #ccc !important; /* Aggiunge il bordo sinistro ai pulsanti adiacenti - Versione 5: 2024-06-25 16:30:00 */
        /*border-right: none !important;*/ /* Rimuove il bordo destro dai pulsanti adiacenti - Versione 5: 2024-06-25 16:30:00 */
    }

    /* Assicurati che le regole specifiche sovrascrivano correttamente */
    .button-container .last-btn {
        border-right: 1px solid #ccc !important; /* Aggiunge il bordo destro - Versione 5: 2024-06-25 16:30:00 */
    }

.dxgvControl_MaterialCompact1, .dxgvDisabled_MaterialCompact1 {
    font: 14px "Roboto Regular", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif;
    background-color: White;
    color: #484848;
    border-bottom: none !important;
    cursor: default;
}

.dxeHyperlink_MaterialCompact1 {
    font-family: "Roboto Regular", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif;
    color: #006699 !important;
    font-size: 0.7rem !important;
    text-decoration: none;
}

.dxbButton_MaterialCompact1.dxbDisabled_MaterialCompact1 {
    border-color: #fff;
    background-color: #fff;
    color: #4f4f4f;
    text-transform: none;
}

.dxgvHeader_MaterialCompact1 {
    background-color: #f4f4f4 !important;
    color: #1a73e8 !important;
    font-size: 1em;
}

.dxrd-preview.dxrd-designer-wrapper {
    background-color: white;
    border-color: #f5f5f5;
}

.dxrd-designer-wrapper {
    background-color: white;
    border-color: #f5f5f5;
}

.dxrd-preview.dxrd-designer-wrapper .dxrdp-toolbar-scrollable.dxrd-toolbar-wrapper {
    background-color: #f5f5f5;
}


.dxgvEditFormDisplayRow_MaterialCompact1 td.dxgv,
.dxgvDetailCell_MaterialCompact1 td.dxgv,
.dxgvDataRow_MaterialCompact1 td.dxgv,
.dxgvDetailRow_MaterialCompact1.dxgvADR td.dxgvAIC {
    overflow: hidden;
    border-bottom: 1px Solid #dfdfdf !important;
    border-right: 1px Solid #dfdfdf;
    border-top-width: 0;
    border-left-width: 0;
    padding: 2px 10px 6px;
}

.dxgvEditFormDisplayRow_WebLogCustomThemes:last-child td.dxgv,
.dxgvDetailCell_WebLogCustomThemes:last-child td.dxgv,
.dxgvDataRow_WebLogCustomThemes:last-child td.dxgv,
.dxgvDetailRow_WebLogCustomThemes.dxgvADR:last-child td.dxgvAIC {
    border-bottom: 1px Solid #dfdfdf !important;
}

.dxmLite_MaterialCompact1 .dxctToolbar_MaterialCompact1.dxm-main.dxmtb {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
}


.dxeCalendar_MaterialCompact1 {
    background-color: White;
    color: #484848;
    font-weight: bold !important;
    font: 14px "Roboto Regular", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif;
    cursor: default;
    border: 1px solid #f5f5f5 !important;
    border-radius: 2px !important;
    border-collapse: separate;
}

.dxeCalendarHeader_MaterialCompact1 {
    color: #1a73e8;
    font-size: 0.7em;
    font-weight: bold;
    font-family: "Roboto Regular", Helvetica, "Droid Sans", Tahoma, Geneva, sans-serif;
    padding: 8px 8px 8px 8px;
    background-color: #f5f5f5;
    margin: 10px;
    text-transform: uppercase;
}


.dxgvControl_MaterialCompact1 .dxgvTable_MaterialCompact1 .dxgvFocusedRow_MaterialCompact1, .dxgvControl_MaterialCompact1 .dxgvTable_MaterialCompact1 .dxgvFocusedRow_MaterialCompact1.dxgvDataRowHover_MaterialCompact1 {
    background-color: #b3daff;
    color: black;
}

.grid-cell-text-align > div {
    font-size: smaller;
 }