/* Birthday Reminder | Date Picker UX | 20.06.2026 */
.birthday-date-field {
  width: 100%;
}

.birthday-date-label {
  display: block;
  margin: 0 0 6px;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.birthday-date-control {
  position: relative;
  width: 100%;
}

.birthday-date-control .birthday-date-input {
  width: 100%;
  min-height: 46px;
  padding-right: 52px !important;
}

.birthday-date-control .birthday-date-input::-webkit-calendar-picker-indicator {
  width: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.birthday-date-trigger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 100%;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 1px solid #e1e5e8;
  border-radius: 0;
  background: transparent;
  color: #334a5e;
  cursor: pointer;
  touch-action: manipulation;
}

.birthday-date-trigger:hover,
.birthday-date-trigger:focus {
  background: #f1f7f8;
  color: #087887;
  outline: 0;
}

.birthday-date-trigger:focus-visible {
  box-shadow: inset 0 0 0 2px #087887;
}

.birthday-date-trigger .fa {
  font-size: 18px;
  pointer-events: none;
}

@media (max-width: 991px) {
  .birthday-date-label {
    font-size: 14px;
  }

  .birthday-date-control .birthday-date-input {
    min-height: 48px;
    font-size: 16px !important;
  }

  .birthday-date-trigger {
    width: 50px;
  }
}
/* End */
