/* VoilaCal — shared month calendar (booking widget + schedule editor). */
.vcal {
  border: 2px solid #1F2A24;
  border-radius: 10px;
  background: #fff;
  padding: 10px 10px 12px;
}
.vcal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.vcal-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13.5px;
  color: #1F2A24;
}
.vcal-nav {
  width: 30px;
  height: 30px;
  border: 2px solid #1F2A24;
  border-radius: 8px;
  background: #FBF3E4;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  color: #1F2A24;
  cursor: pointer;
}
.vcal-nav:hover:not(:disabled) { background: #E8A33D; }
.vcal-nav:disabled { opacity: .3; cursor: default; }

.vcal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.vcal-dow {
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #8a8272;
  padding: 3px 0 5px;
  font-family: 'Montserrat', sans-serif;
}
.vcal-cell {
  position: relative;
  aspect-ratio: 1;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
}
.vcal-day {
  border: 2px solid transparent;
  background: none;
  color: #1F2A24;
  cursor: pointer;
}
.vcal-day:hover { background: #FBF3E4; border-color: #1F2A24; }
.vcal-day.sel {
  background: #1F2A24;
  color: #FBF3E4;
  border-color: #1F2A24;
  box-shadow: 2px 2px 0 #17A398;
}
.vcal-day--off {
  color: #c9c2b2;
  cursor: default;
  font-weight: 600;
}
.vcal-dot {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #17A398;
}
.vcal-day.sel .vcal-dot { background: #E8A33D; }
