/**
 * Styles for Tauri app users
 */

/* Body classes for app */
body.tauri-app {
  /* Custom app styles */
}

/* Download buttons work in app */
.tauri-app .download-link,
.tauri-app .download-btn,
.tauri-app a[download] {
  display: inline-block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Protected content is fully visible */
.tauri-app .protected-content {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}

/* Hide browser-only messages */
.tauri-app .browser-only-message,
.tauri-app .download-app-prompt {
  display: none !important;
}

/* Device indicator for debugging */
.tauri-device-indicator {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: rgba(102, 126, 234, 0.1);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 12px;
  color: #667eea;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  animation: fadeIn 0.5s ease-out;
}

.tauri-device-indicator i {
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}