html,
body {
  font-family: sans-serif;
  background-color: #f4f4f4;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.table-row-clickable {
  cursor: pointer;
}

/* Toast */

#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  min-width: 250px;
  max-width: 350px;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
  transition: opacity 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.toast .progress {
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.toast .progress-bar {
  width: 100%;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.6);
}

.content {
  transition: margin-left 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  /* Allow content to expand */
  overflow-y: auto;
  /* Enable scrolling */
}




#clearSearchBtn {
  display: none;
}