/* Projektspezifische Styles */


/* Start Rechte Maus Menü */
.ui-menu {
	margin: 3px;
	padding: 5px;
    border-radius: .25rem;
    z-index:10000;
}

.ui-menu .ui-state-active,
.ui-menu .ui-state-focus{
    background-color: #17a2b8;
    border: 1px solid #dddddd;
    border-radius: .25rem;
}
/*  Ende Rechte Maus Menü */

/* Resourcenplanungs-Styles Anfang*/
.planungswoche-matrix-header {
    display: flex;
    margin-bottom: 5px;
}

.woche-header {
    padding-left: 1px;
    width: 100px;
    border-bottom: 2px solid rgb(255, 255, 255);
}

.planungsrow {
    display: flex;
}

.ressource {
    width: 10%;
}

.legende {
    width: 5%;
}

.woche {
    display: flex;
    width: 100px;
    border-right: 2px solid rgb(255, 255, 255);
    border-bottom: 2px solid rgb(255, 255, 255);
}

div.woche:hover {
    border-right: 2px solid rgb(126, 126, 126);
    border-bottom: 2px solid rgb(126, 126, 126);
    border-left: 2px solid rgb(126, 126, 126);
    border-top: 2px solid rgb(126, 126, 126);
}

.wochenende {
    width: 40px;
}

.abwesend {
    background-color: rgb(190, 180, 197);
	border-radius: 0.275em;
}

.feiertag {
    background-color:  rgb(179, 17, 0);
	border-radius: 0.275em;
}

.anwesend {
    background-color: rgb(153, 212, 52);
	border-radius: 0.275em;
}

.gearbeitet {
    background-color: rgb(18, 166, 182);
	border-radius: 0.275em;
}

.form-control-datepicker {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Resourcenplanungs-Styles Ende*/

/*drag & drop*/
#drop_file_zone {
    background-color: #EEE;
    border: #999 0.125rem dashed;
    border-radius: 0.3rem;
    width: 25rem;
    height: 4.375rem;
    padding: 0.5rem;
    font-size: 1.125rem;
}
#drag_upload_file {
  margin:0 auto;
}
#drag_upload_file p {
  text-align: left;
}
#drag_upload_file #selectfile {
  display: none;
}
/*drag & drop ende*/

/* rechte Maus Menü iPad*/
#dashboardrechnungen tr {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}