.offline-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.offline-header {
  margin-bottom: 2rem;
}

.offline-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.offline-message {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
}

.offline-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Gabarito', sans-serif;
}

.btn:hover {
  background-color: #45a049;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #4CAF50;
  color: #4CAF50;
}

.btn-outline:hover {
  background-color: #4CAF50;
  color: white;
}

/* Offline indicator styles for use across the app */
#offline-indicator {
  background: #ff9800;
  color: white;
  padding: 8px;
  text-align: center;
  margin-bottom: 10px;
}

