@import 'views/login-view.css';
@import 'components/sideNav.css';
@import 'components/datePicker.css';
@import 'components/grid.css';
@import 'components/toolbar.css';
@import 'components/form.css';
@import 'components/card.css';
@import 'components/vaadin-button.css';
@import 'components/map.css';


:root{
    --theme-color : #e95d19;
}

@media all and (max-width: 1100px) {

	.list-view.editing .toolbar,
	.list-view.editing .contact-grid {
		display: none;
	}

	.list-view {
        padding: 0px !important;
    }
}
@media all and (min-width: 1100px) {

    .drawerFilterMobile{
        display : none;
    }
}
html {
	--lumo-primary-color: var(--theme-color);
	--lumo-secondary-color: var(--theme-color);
	--lumo-tertiary-color: var(--theme-color);
	--lumo-primary-text-color: var(--theme-color);
	--lumo-font-size-m : 12pt;

	/*--lumo-header-text-color :#2fcacc;*/

    --vaadin-app-layout-drawer-width : 14em;

    /*COULEURS */
    --heading-text : #252526;
    --body-text : #323233;
    --secondary-text:#696969;
    --tertiary-text:#8d8d8e;
    --app-background-color : #f4f5f7;
    --border-color : #b4b4b4;
    --header-color : black;
    /*--error-text-color:#ca150c;*/


}

a[highlight] {
	font-weight: bold;
	text-decoration: underline;
}

vaadin-app-layout{
    background-color : var(--app-background-color);
}

.innerAppLayout{
    background-color : white;
    border-radius: 15px;
}


.align-right {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: end;

}

.hide{
    display: none;
}

.integer-filter{
    width: 120px;
    margin-right: -10px;
}

vaadin-combo-box-item{
    justify-content : center;
}


.appHeader{
    display: flex;
    justify-content: space-between;
}

.drawerFilterMobile{
    position: absolute;
    width: 100%;
    background-color: white;
    z-index: 2;
    bottom : 0;
    box-shadow: var(--lumo-box-shadow-xl);

}

.subSection > vaadin-details-summary{
    margin-left : 20px;
}

.text-wrap{
    text-wrap : wrap;
}

.errorMessage{
    color : #ca150c;
    font-size: 11pt;
    font-weight : normal;
}

.languageSelectHeader{
    width : 100px;
    vaadin-select-value-button{
        color : var(--theme-color);
        /*padding-bottom : 5px;*/
    }
}

.languageSelectHeader::part(toggle-button),.languageSelectHeader > [slot="prefix"]{
   color : var(--theme-color);
}

vaadin-text-field[disabled]{
    input,label{
        -webkit-text-fill-color:var(--lumo-contrast-60pct);
    }
}

.dashboard-view{
    padding : 0;
    gap : 0;
}

.appHeaderLayout{
    vaadin-button, vaadin-select::part(input-field) {
        background : none;
    }
}


.custom-notification::part(content),.custom-notification::part(overlay){
    background-color : red;
    color : white;
    border-radius : 15px;
}



.menuActionBarItems{
    padding: 0 10px 0 0;
}

.menuActionBarItems::part(checkmark){
    display:none;
}

.dialogUpload h3{
    color : red;
    font-size : 12pt;
    width : 530px;
}