/*@import url('custom.css');*/
@import url('esh_colors.css');
@import url('user_roles.css');
@import url('grid_tables.css');
@import url('work_schedule.css');
@import url('svg_icons.css');
@import url('esh_pdf.css');

body {
/*
  font-family: 'Open Sans', sans-serif;
  background-color: var(--esh-background);
  color: var(--esh-foreground);
*/
}

/************************************************************/
.smaller {
    font-size: 0.7em; /* Verkleinert die Schriftgröße */
}

.center {
    text-align: center;
}

.navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/************************************************************/
label {
    min-width: 110px;
}

.form-check-label {
    min-width: 190px;
}


/************************************************************/
a[href^="tel:"] {
    text-decoration: none;
    color: inherit;
}
a[href^="mailto:"] {
    text-decoration: none;
    color: inherit;
}

/************************************************************/
/* Styles nur für den Druck */
@media print {
    /* Navigation und nicht benötigte Elemente ausblenden */
    nav, .navigation, .sidebar, .footer {
        visibility: hidden;
        height: 0;
    }

    .container {
        transform: scale(0.95);
        transform-origin: top left;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .hide-on-print {
        visibility: hidden;
        height: 0;
    }

}