.date-editor {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin-top: 1ex;
  margin-bottom: 2ex;
}
.date-editor .toolbar {
  width: 100%;
  background: #fff0e0;
  padding: 1ex 1em 1ex 1em;
}
.date-editor .toolbar label:hover {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.date-editor .toolbar a > img:hover {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  transform: none;
}
.date-editor .details {
  display: table;
  padding: 1ex 1em 1ex 1em;
  width: calc(100% - 20px);
}
.date-editor .details p {
  display: table-row;
  width: 100%;
}
.date-editor .details p > label {
  display: table-cell;
  margin: 0 1em 0 2em;
}
.date-editor .details p > input {
  display: table-cell;
  margin: 0 1em 0 2em;
  width: 100%;
}
.date-editor form label:hover {
  cursor: pointer;
}

table.dates {
  width:100%;
}
table.dates th {
  background: #fff0e0;
}
table.dates tr:nth-child(odd) {
  background: #fffcfb;
}

table.dates article {
	width: 0;
	height: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
}

table.dates article:target {
  position: fixed;
  top: 200px;
  left: 200px;
	width: 400px;
	height: 400px;
	padding: 1ex 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	text-align: left;
	background-color: #f0f0f0;
	z-index: 1;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  border: 2px solid #c0c0c0;
}

