.smf-theme-native {
  display: none !important;
}

.smf-theme-select {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: #071543;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  outline: none;
  padding: 11px 13px;
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.smf-theme-select.is-plain {
  margin-top: 8px;
}

.smf-theme-select.is-transparent {
  margin-top: 8px;
  border-color: transparent;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.smf-theme-select:hover,
.smf-theme-select.is-open {
  border-color: rgba(47, 128, 237, .55);
  box-shadow: 0 0 0 4px rgba(47, 128, 237, .1);
}

.smf-theme-select.is-transparent:hover,
.smf-theme-select.is-transparent.is-open {
  box-shadow: none;
}

.smf-theme-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smf-theme-menu {
  position: fixed;
  z-index: 10000;
  max-height: 206px;
  overflow-y: auto;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 54px rgba(7, 21, 67, .18);
  padding: 6px;
}

.smf-theme-menu.hidden,
.smf-theme-date.hidden {
  display: none;
}

.smf-theme-option {
  display: flex;
  width: 100%;
  align-items: center;
  border-radius: 12px;
  color: #071543;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 12px;
  text-align: left;
  transition: background .16s ease, transform .16s ease;
}

.smf-theme-option:hover,
.smf-theme-option.is-active {
  background: #fff7ed;
  transform: translateY(-1px);
}

.smf-theme-date {
  position: fixed;
  z-index: 10001;
  width: min(310px, calc(100vw - 24px));
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 70px rgba(7, 21, 67, .2);
  color: #071543;
}

.smf-theme-date-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(90deg, #ff7a2f, #df1f85);
  color: #fff;
  padding: 11px 12px;
}

.smf-theme-date-title {
  font-size: 14px;
  font-weight: 900;
}

.smf-theme-date-nav {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 900;
}

.smf-theme-date-week,
.smf-theme-date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
  padding: 0 12px;
}

.smf-theme-date-week {
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  padding-top: 12px;
  text-align: center;
  text-transform: uppercase;
}

.smf-theme-date-grid {
  padding-bottom: 12px;
  padding-top: 7px;
}

.smf-theme-date-day {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #071543;
  font-size: 13px;
  font-weight: 900;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.smf-theme-date-day:not(:disabled):hover {
  background: #fff7ed;
  color: #ff5a00;
  transform: translateY(-1px);
}

.smf-theme-date-day.is-today {
  box-shadow: inset 0 0 0 1px rgba(47, 128, 237, .35);
  color: #2563eb;
}

.smf-theme-date-day.is-selected {
  background: linear-gradient(90deg, #ff7a2f, #df1f85);
  color: #fff;
  box-shadow: 0 10px 20px rgba(223, 31, 133, .2);
}

.smf-theme-date-day:disabled {
  color: #cbd5e1;
}

.smf-theme-date-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #f1f5f9;
  padding: 12px 14px;
}

.smf-theme-date-action {
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 11px;
}

.smf-theme-date-clear {
  background: #f8fafc;
  color: #64748b;
}

.smf-theme-date-today {
  background: #eff6ff;
  color: #2563eb;
}

@media (max-width: 640px) {
  .smf-theme-menu {
    max-height: 190px;
  }
}
