/* 固定工具栏样式 */
.fixed-toolbar {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toolbar-item {
  width: 60px;
  height: 60px;
  background-color: #e3117daf;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s;
  text-decoration: none !important;
}
.toolbar-item:hover {
  background-color: #e3117c;
  transform: translateY(-3px);
}
.toolbar-item i { font-size: 20px; }
.toolbar-item span { font-size: 10px; margin-top: 2px; }

/* 模态框样式 */
.booking-modal-mask {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.booking-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 450px;
  position: relative;
}
.booking-modal-content .close {
  position: absolute;
  right: 15px;
  top: 10px;
}