/* 全局样式 */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
  .p-2 {
    padding: 0.2rem;
}
/* 设施模型样式 */
.equipment {
  cursor: move;
}

.equipment:hover {
  filter: brightness(0.95);
}

/* 旋转按钮样式 */
.rotate-btn {
  cursor: pointer;
  fill: white;
  stroke: black;
  stroke-width: 1;
}

.rotate-icon {
  fill: black;
  pointer-events: none;
}

/* 选择状态样式 */
.selected {
  outline: 2px dashed blue;
}

/* 打印样式 */
@media print {
  body * {
    visibility: hidden;
  }
  
  #printArea, #printArea * {
    visibility: visible;
  }
  
  #printArea {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }

}
    