/* FOMS POS Custom Enhancements */
.bt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}
.bt-dot.connected {
  background-color: #22c55e !important;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8) !important;
}
.bt-dot.paired-disconnected {
  background-color: #eab308 !important;
  box-shadow: 0 0 8px rgba(234, 179, 8, 0.6) !important;
  animation: pulse-amber 1.8s infinite ease-in-out;
}
@keyframes pulse-amber {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.bt-dot.disconnected {
  background-color: #ef4444 !important;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6) !important;
}

/* Header Bluetooth Indicator Alignment */
.bt-printer-indicator {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
  line-height: 1 !important;
  user-select: none;
}
.bt-printer-indicator i.mdi-device-bluetooth {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  height: 18px !important;
  width: 18px !important;
  font-size: 1.25rem !important;
  vertical-align: middle !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}
.bt-printer-indicator .bt-label {
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
  margin: 0 !important;
  white-space: nowrap;
}
.bt-printer-indicator .bt-dot {
  margin: 0 !important;
  flex-shrink: 0 !important;
}

/* Disable default print stylesheets when system print is called */
@media print {
  body.thermal-printing-only {
    display: none !important;
  }
}
