.asv-cal, .asv-up { margin: 1.5rem 0; }
.asv-cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.asv-cal-nav a { text-decoration: none; font-weight: 700; }
.asv-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.asv-dow {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  opacity: .7;
}
.asv-day {
  min-height: 72px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  padding: 6px;
  font-size: 13px;
  background: rgba(255,255,255,.6);
}
.asv-day.empty { background: transparent; border-color: transparent; }
.asv-day.today { outline: 2px solid #2d6a4f; }
.asv-day span { font-weight: 700; display: block; }
.asv-day em {
  display: block;
  font-style: normal;
  font-size: 11px;
  background: #d8f3dc;
  border-radius: 4px;
  padding: 1px 4px;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.asv-up ul { padding-left: 1.1rem; }
