* {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

input[disabled] {
  color: #888;
}

.headerBar {
  display: flex;
  background-color: #ececff;
  border-top: 1px solid #bcbcff;
  border-bottom: 1px solid #bcbcff;
}

.monthNav {
  padding: 8px;
  display: flex;
  justify-content: space-between;
  min-width: 420px;
}

.addTaskBar {
  display: flex;
}

.addTaskBar .dates {
  display: block;
}

.addTaskBar .buttons {
  display: flex;
  justify-content: space-between;
}

.datePil {
  display: inline-block;
  background-color: #5656ff;
  border: 1px soild white;
  color: white;
  padding: 2px 5px;
  margin: 3px;
  border-radius: 8px;
}

.headerBar h1 {
  padding: 1px 1em;
}

.headerBar .taskManager table {
  background-color: white;
  position: absolute;
  padding: 0.5em;
  z-index: 10;
}

.timeslip {
  display: flex;
}

.timeslip .timeslip-delete {
  margin-top: 2px;
  margin-right: 2px;
  cursor: pointer;
}

.timeslip .timeslip-hours {
  margin-left: auto;
}

.timeslip-edit.none {
  opacity: 0.1;
  transition: opacity 0.5s;
}

.timeslip-edit.none:hover {
  opacity: 1;
}

.day .day-timeslips {
  height: 3em;
  overflow-y: auto;
}

.month {
  border: 1px solid lightgrey;
}

.week {
  display: flex;
}

.day {
  width: calc(100% / 6);
  border: 1px solid lightgrey;
  margin: -1 -1 0 0;
  padding: 3.5px;
}

label.day {
  font-weight: initial;
}

.day:hover {
  border: 1px solid grey;
  z-index: 2;
}

.day.selected {
  border: 3px solid grey;
  z-index: 1;
  padding: 1.5px;
}

.day.complete {
  background-color: #dff0d8;
}

.day.short {
  background-color: #f2dede;
}

.day.today {
  background-color: #f5f5f5;
  color: navy;
  border: 1px solid black;
  z-index: 1;
  border-radius: 4px;
}

.day.today.short {
  background-color: #edc9c9;
}

.day.today.complete {
  background-color: #caeabe;
  color: navy;
}

.day.unbillable0 {
  background-color: #caeaff;
  color: navy;
}

.day.unbillable25 {
  background-color: #caeaef;
  color: navy;
}

.day.unbillable50 {
  background-color: #caeadf;
  color: navy;
}

.day.unbillable75 {
  background-color: #caeace;
  color: navy;
}

.day-total {
  display: flex;
}

.day-total .day-total-hours {
  margin-left: auto;
  font-weight: bold;
}

.day.weekend {
  width: calc(100% / 12);
  background-color: #fcf8e3;
}

.day .day-header {
  display: flex;
  justify-content: space-between;
}

.day-of-week-label {
  font-weight: bold;
}

.taskManager table td {
  border: 1px solid grey;
}

a:not([href]) {
  cursor: pointer;
}

.Timesheet table {
  border: 1px solid black;
}

.Timesheet tr:nth-child(even) td {
  background: #eeeeee;
}

.Timesheet tr.shortDay td {
  background: red;
}

.Timesheet td {
  padding: 5px;
}

.svgicon-sick {
  background-image: url('../sick.svg');
  width: 16px;
  height: 16px;
}

.svgicon-sick::before {
  content: ' ';
}
