/* Critical styles for offline fallback */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0f172a;
  color: #f3f4f6;
}

.offline-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
  text-align: center;
}

.offline-icon {
  width: 64px;
  height: 64px;
  color: #ef4444;
  margin-bottom: 24px;
}

.offline-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}

.offline-message {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 32px;
}

.retry-button {
  background-color: #006a4e;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.retry-button:hover {
  background-color: #00563f;
}