.network-error-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #f8f9fa;
  padding: 1rem;
}

.network-error-content {
  text-align: center;
  padding: 2rem;
  max-width: 400px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.network-error-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: #dc3545;
}

.network-error-title {
  font-size: 1.5rem;
  color: #343a40;
  margin-bottom: 1rem;
  font-weight: 600;
}

.network-error-message {
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.network-error-list {
  text-align: left;
  color: #6c757d;
  margin: 0 auto 1.5rem;
  padding-left: 1.5rem;
  max-width: 300px;
}

.network-error-list li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.network-error-retry-button {
  background-color: #0d6efd;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.network-error-retry-button:hover {
  background-color: #0b5ed7;
  transform: translateY(-1px);
}

.network-error-retry-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.network-error-retry-button:active {
  transform: translateY(0);
} 