
.connection-status {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #e74c3c;
  color: white;
  text-align: center;
  padding: 10px;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.3s ease-in-out;
}

.connection-status.hidden {
  transform: translateY(-100%);
  display: flex; /* Keep layout but move out of view */
}

.connection-status button {
  background: white;
  color: #e74c3c;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.connection-status button:hover {
  background: #f0f0f0;
}

#connection-retry-btn.hidden {
  display: none !important;
}
