/* 日历样式 */
.calendar-booking-item {
  font-size: 11px;
  line-height: 1.2;
  min-height: 28px;
}

.calendar-booking-item:hover {
  transform: scale(1.02);
  transition: all 0.15s ease;
}

/* 日历网格hover效果 */
.calendar-day-cell:hover {
  background-color: rgba(59, 130, 246, 0.05) !important;
  transition: background-color 0.15s ease;
}

/* 当天的特殊样式 */
.calendar-today {
  background-color: rgba(59, 130, 246, 0.1);
  border: 2px solid rgb(59, 130, 246);
}

/* 预定数量指示器 */
.booking-count-indicator {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  background-color: rgb(59, 130, 246);
  border-radius: 50%;
  color: white;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}