/* Custom Snackbars and Overlays for Session Timer */

.session-overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}

.session-snackbar-center {
  background-color: #333333;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  max-width: 90%;
  width: auto; /* Estica conforme o conteúdo */
  font-family: 'Jost', sans-serif;
}

.session-snackbar-bottom {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background-color: #ffb300;
  color: #000000;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  max-width: 90%;
  width: auto; /* Estica conforme o conteúdo */
  font-family: 'Jost', sans-serif;
}

.session-snackbar-close-btn {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.8;
  font-weight: 300;
  transition: opacity 0.2s ease-out;
  margin-left: 12px;
}

.session-snackbar-close-btn:hover {
  opacity: 1;
}
