.mm-cal-wrap {
  border: 1px solid #e3dfe8;
  border-radius: 12px;
  overflow: hidden;
  padding: 14px;
  background: #fdfbff;
}
.mm-cal-month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.mm-cal-month-title {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1f0d35;
}
.mm-cal-nav {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 1px solid #e3dfe8;
  background: white;
  cursor: pointer;
  color: #58535e;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
  line-height: 1;
}
.mm-cal-nav:hover {
  border-color: #3b1667;
  color: #3b1667;
}
.mm-cal-nav--hidden {
  visibility: hidden;
  pointer-events: none;
}
.mm-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}
.mm-cal-dw {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(31, 13, 53, 0.35);
  text-align: center;
  padding: 4px 0 6px;
}
.mm-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  color: #1f0d35;
  user-select: none;
  transition:
    background 0.1s,
    color 0.1s,
    transform 0.12s;
  z-index: 1;
}
.mm-cal-day:hover:not(.mm-cal-day--empty):not(.mm-cal-day--past) {
  background: rgba(107, 63, 160, 0.1);
  color: #3b1667;
  transform: scale(1.1);
  z-index: 3;
}
.mm-cal-day--empty {
  pointer-events: none;
}
.mm-cal-day--past {
  color: rgba(31, 13, 53, 0.22);
  cursor: not-allowed;
  pointer-events: none;
}
.mm-cal-day--today:not(.mm-cal-day--start):not(.mm-cal-day--end)::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e7c32d;
}
.mm-cal-day--in-range {
  background: rgba(231, 195, 45, 0.15);
  border-radius: 0;
}
.mm-cal-day--start {
  background: #e7c32d !important;
  color: #1f0d35 !important;
  font-weight: 700;
  border-radius: 6px;
  z-index: 3;
}
.mm-cal-day--start:not(.mm-cal-day--end)::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: -1px;
  background: rgba(231, 195, 45, 0.15);
  z-index: -1;
  border-radius: 0;
}
.mm-cal-day--end {
  background: #3b1667 !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 6px;
  z-index: 3;
}
.mm-cal-day--end:not(.mm-cal-day--start)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  left: -1px;
  background: rgba(231, 195, 45, 0.15);
  z-index: -1;
  border-radius: 0;
}
.mm-cal-day--start.mm-cal-day--end::after,
.mm-cal-day--start.mm-cal-day--end::before {
  display: none;
}
.mm-cal-day--hover-end {
  background: rgba(107, 63, 160, 0.18) !important;
  color: #3b1667 !important;
  border-radius: 6px;
}
.mm-cal-status {
  text-align: center;
  font-size: 12px;
  color: #58535e;
  margin-top: 10px;
  min-height: 18px;
}
.mm-cal-status--complete {
  color: #3b1667;
  font-weight: 600;
}
.mm-cal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.mm-cal-dot--from {
  background: #e7c32d;
}
.mm-cal-dot--to {
  background: #3b1667;
}
