/* ============================================
   LOGGER DOWNLOAD BUTTON - DISABLED
   Button removed from UI - use console instead:
   window.downloadAppLogs()
   ============================================ */

/*
.logger-download-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00c3bd 0%, #00a098 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 195, 189, 0.4);
  z-index: 9998;
  transition: all 0.3s ease;
  font-size: 24px;
}

.logger-download-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 195, 189, 0.6);
}

.logger-download-btn:active {
  transform: scale(0.95);
}

.logger-download-btn::before {
  content: '📊';
}

.logger-download-btn::after {
  content: 'Download Logs';
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.logger-download-btn:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .logger-download-btn {
    width: 48px;
    height: 48px;
    bottom: 80px;
    right: 15px;
  }
}
*/
