
.vcron-select-container {
  display: inline-block;
  position: relative;
  margin: 0 0.2em;
}
.vcron-select-input {
  display: inline-block;
  border-radius: 3px;
  border: 1px solid #ddd;
  background-color: #eee;
  user-select: none;
  padding: 0 0.5em;
}
.vcron-select-input:hover {
  border: 1px solid #ccc;
  background-color: #ddd;
}
.vcron-select-list {
  position: absolute;
  top: 1.8em;
  left: 0px;
  margin: 0;
  padding: 0;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.5);
  border: 1px solid #aaa;
  background-color: #eee;
  list-style: none;
  z-index: 100;
}
.vcron-select-list-item {
  display: inline-block;
  box-sizing: border-box;
  user-select: none;
  width: 100%;
  padding: 0.2em 0.5em;
  text-align: center;
}
.vcron-select-list-item:hover {
  background-color: rgb(52, 147, 190);
  color: white;
}
.vcron-select-list-item-selected {
  background-color: rgb(43, 108, 138);
  color: white;
}

