.date-picker-header {
  align-items: center;
  display: flex;
  gap: 0.5em;
  justify-content: center;
  margin-bottom: 0.5em;
}

.date-picker-header span { cursor: pointer; }

.date-picker-header .title {
  flex: 1 1 auto;
  font-weight: bold;
  min-width: 8em;
  text-align: center;
}

.date-picker-icon {
  cursor: pointer;
  margin-left: 0.25em;
  width: 2.7em;
  height: 1.8em;
}

.date-picker-popup {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  font: 1em Verdana, sans-serif;
  padding: 0.5em;
  position: absolute;
  z-index: 9999;
}

.date-picker-popup table {
  border-collapse: collapse;
  width: 100%;
}

.date-picker-popup td, .date-picker-popup th {
  cursor: pointer;
  padding: 0.25em;
  text-align: center;
}

.date-picker-popup td:hover { background-color: #d0e0ff; }

.date-picker-popup td.selected {
  background-color: #3399ff !important;
  border-radius: 0.25em;
  color: #ffffff;
  font-weight: bold;
}

.date-picker-popup td.today {
  background-color: #ffcc00;
  border-radius: 0.25em;
  font-weight: bold;
}

.date-picker-popup th { background-color: #eeeeee; }

.date-picker-wrapper {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.date-picker-wrapper input.date-pick { width: 9em; }