#DatePickerCalendar {
  position: fixed;
  z-index: 1000;
  background: var(--bg-secondary);
  border-radius: var(--ss-radius-16);
  box-shadow: var(--ss-shadow-1);
  padding: 0 !important;
  min-width: 312px;
  min-height: 340px;
  border: none;
}

.ui-datepicker {
  font-family: 'Inter', Arial, sans-serif;
  font-size: var(--ss-font-size-base);
  background: transparent;
  border: none;
}

.ui-datepicker-header {
  background: none;
  border: none;
  text-align: center;
}

.ui-datepicker-title {
  padding-top: 12px;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: var(--ss-space-1);
}

.ui-datepicker-calendar {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.ui-datepicker-calendar th {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 8px;
}

.ui-datepicker-calendar td {
  text-align: center;
  padding: 0;
}

.ui-datepicker-calendar a.ui-state-default,
.ui-datepicker-calendar span.ui-state-default{
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.ui-datepicker-calendar span.ui-state-default{
  color: var(--text-tertiary);
}

#DatePickerCalendar .ui-datepicker-calendar td,
#DatePickerCalendar .ui-datepicker-calendar th {
  padding: 0.25em;
  text-align: center;
  width: 2em;
}

.ui-datepicker-calendar td.ui-datepicker-other-month a,
.ui-datepicker-calendar td.ui-datepicker-other-month {
  color: #ccc !important;
  pointer-events: none;
}

.ui-datepicker-calendar a.ui-state-active,
.ui-datepicker-calendar a.ui-state-highlight {
  background: var(--sensera-orange-500);
  color: var(--sensera-base-white);
  font-weight: 600;
}

.ui-datepicker-today a.ui-state-highlight {
  background: var(--hover-bg);
  color: var(--sensera-base-white);
  border-color: inherit !important;
}

.ui-datepicker-calendar a:hover {
  background: var(--hover-bg);
}

.ui-datepicker-prev, .ui-datepicker-next {
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 10px;
  cursor: pointer;
  background: none;
  border: none;
}


a.ui-datepicker-prev.ui-corner-all {
  left: 10px;
  height: 32px;
}

a.ui-datepicker-next.ui-corner-all {
  right: 10px;
  height: 32px;
}

/* Add arrow icons using CSS */
.ui-datepicker-prev:before {
  /*content: '◀';*/ /** Looks button-y/emoji on Apple apps */
  font-family: 'FontAwesome';
  content: '\f060'; /** Font Awesome left arrow */
  font-size: 22px;
  color: var(--text-secondary)/*var(--sensera-gray-warm-500)*/;
  display: block;
  text-align: center;
  line-height: 32px;
}

.ui-datepicker-next:before {
  /*content: '▶';*/ /** Looks button-y/emoji on Apple apps */
  font-family: 'FontAwesome';
  content: '\f061'; /** Font Awesome right arrow */
  font-size: 22px;
  color: var(--text-secondary)/*var(--sensera-gray-warm-500)*/;
  display: block;
  text-align: center;
  line-height: 32px;
}

.ui-datepicker-next span, .ui-datepicker-prev span {
  display: none;
}
