
.fade-in {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-content {
  min-height: calc(100vh - 100px);
}

/* Connection Status Styles */
.connection-indicator {
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
}

.connection-indicator.show {
  transform: translateY(0);
  opacity: 1;
  max-height: 60px;
}

.connection-indicator.connected {
  background-color: #198754 !important; /* Bootstrap success */
  color: white;
}

.connection-indicator.disconnected {
  background-color: #dc3545 !important; /* Bootstrap danger */
  color: white;
}

.connection-indicator.searching {
  background-color: #fd7e14 !important; /* Bootstrap warning */
  color: white;
}

/* Styles moved from inline attributes */
#mainNavigation {
  display: none;
}

.toast-container-wrapper {
  z-index: 9999;
}
