.mailContainer {
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 350px;
  height: 40px;
  display: flex;
  align-items: center;
}

.inputField {
  margin-left: 10px;
  border: none;
  outline: none;
  width: 100%;
  min-height: 30px;
  align-self: center;
}

.focused {
  border: 1px solid #0a5dc2;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.required {
  color: red;
  font-size: 20px;
  margin-left: 4px;
  margin-top: 2px;
}

.headers {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.timeHeader {
  border: 1px solid #ddd;
  background-color: white;
  z-index: 1;
  width: 180px;
  position: absolute;
}

.timeContainer {
  display: flex;
  flex-wrap: wrap;
  height: 200px;
  align-items: center;
}
.timeField {
  padding: 8px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  border-right: 1px solid #ddd;
}
.timeField:hover {
  background-color: #0a5dc2;
  color: white;
}

.minutesField {
  padding: 8px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  border-right: 1px solid #ddd;
}
.minutesField:hover {
  background-color: #0a5dc2;
  color: white;
}
.label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.hourField {
  overflow: hidden;
  width: 32%;
}
.hourField:hover {
  overflow-y: auto;
}

.minsField {
  overflow: hidden;
  width: 32%;
}
.minsField:hover {
  overflow-y: auto;
}
.timeFormat {
  padding: 8px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}
.timeFormat:hover {
  background-color: #0a5dc2;
  color: white;
}
.timeFormatHeader {
  overflow: hidden;
  width: 34%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.selecetedField {
  background-color: #0a5dc2;
  color: white;
}
