body { font-family: Arial; margin: 20px; background-color: #f9fafb; }
.container { display:flex; gap:20px; }
.employee-list { width:200px; background:#fff; padding:10px; border-radius:5px; box-shadow:1px 1px 5px rgba(0,0,0,0.1);}
#employees .shift { background:#34d399; color:#fff; padding:5px; margin:5px 0; border-radius:4px; cursor:grab; }
#calendar-container { flex:1; display:flex; flex-direction:column; gap:20px; }

body {
    background-color: #b0b0b0; /* Mittelgrau Hintergrund */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

#calendar {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

.day-header {
    padding: 10px 0;
    border-bottom: 2px solid #999;
    background-color: #808080; /* dunkleres Grau als Header */
    color: #e6ff00; /* Neon-Gelbgrün Akzent */
    font-weight: bold;
}

.week-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day {
  width: 210px;
  border: 1px solid #ccc;
  margin: 0px;
  padding: 8px;
  min-height: 60px;
  background-color: #f9fafb;

}

.zimmeranzahl.forecast-low {
    color: #00ff00; /* Neon-Grün für wenig Auslastung */
    font-weight: bold;
}

.zimmeranzahl.forecast-medium {
    color: #e6ff00; /* Neon-Gelbgrün für mittlere Auslastung */
    font-weight: bold;
}

.zimmeranzahl.forecast-high {
    color: #ff0000; /* Rot für volle Auslastung */
    font-weight: bold;
}

.shift {
    margin-top: 5px;
    padding: 3px 5px;
    border-radius: 4px;
    color: #000;
    cursor: grab;
}

.shift.selected {
    outline: 3px solid #e6ff00; /* Neon-Gelbgrün Akzent bei Auswahl */
    background-color: #fff; 
}

.shift { color:#fff; padding:4px 6px; margin:3px 0; border-radius:4px; cursor:grab; }
.shift:hover { transform:scale(1.05); box-shadow:0 2px 6px rgba(0,0,0,0.2); }

.zimmeranzahl { font-size:12px; margin-bottom:5px; font-weight:bold; }

#analysis { background:#fff; padding:15px; border-radius:5px; box-shadow:1px 1px 5px rgba(0,0,0,0.1); }
#analysis h2 { margin-top:0; }

#employees-container {
    width: 200px;
    float: left;
    margin-right: 20px;
}

#employees {
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 200px;
    background-color: #f3f4f6;
}

.employee {
    margin: 5px 0;
    padding: 5px;
    cursor: grab;
    color: white;
    border-radius: 4px;
}

#trash {
    margin-top: 60px;
    padding: 30px;
    border: 2px dashed #f87171;
    text-align: center;
    color: #f87171;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

#trash.hover {
    background-color: #f87171;
    color: white;
}

.forecast-low {
    background-color:  #595959; /* grün */
    font-weight: bold;
}

.forecast-medium {
    background-color: #595959; /* gelb */
    font-weight: bold;
}

.forecast-high {
    background-color: #595959; /* rot */
    font-weight: bold;
}

.day.today {
    border: 2px solid #bfff00; /* Neon-Gelbgrün für Akzent */
    background-color: #cb91fb;  /* leicht hellgrünlicher Hintergrund */
    box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}

