/* Simple Toast Notification Styles */
#user-display.auth-loading {
    display: none !important;
}
.toast-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 600;
  pointer-events: none;
}

.user-display-container{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 17;
  pointer-events: none;
}

.toast {
  background: black;
  color: white;
  padding: 2% 3%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 300px;
  max-width: 500px;
  pointer-events: auto;
  opacity: 0;
  animation: fadeIn 0.3s ease-out forwards;
  border-left: 5px solid white;
  border-right: 5px solid white;
  font-size: 16px;
  position: relative;
  z-index: 50;
}
.toast.success {
  border-left-color: #D5FF4F;
  border-right-color: #D5FF4F;
}
.toast.error {
  border-left-color: #FF0000;
  border-right-color: #FF0000;
}
.toast.warning {
  border-left-color: #7F4FFF;
  border-right-color: #7F4FFF;
}
.toast.info {
  border-left-color: #2EAAFF;
  border-right-color: #2EAAFF;
}
.toast-icon {
  font-size: 28px;
  flex-shrink: 0;
  font-weight: bold;
}
.toast.success .toast-icon {
  color: #4CAF50;
}
.toast.error .toast-icon {
  color: #f44336;
}
.toast.warning .toast-icon {
  color: #ff9800;
}
.toast.info .toast-icon {
  color: #2196F3;
}
.toast-message {
  flex: 1;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}
.toast.hiding {
  animation: fadeOut 0.3s ease-in forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
@media (max-width: 480px) {
  .toast {
    min-width: 250px;
    max-width: 90vw;
    padding: 15px 20px;
  }
} /* CLOSING BRACE WAS MISSING */
	
/* PORTRAIT MOBILE (up to 1099px wide) */
@media only screen and (orientation: portrait) and (max-width: 1099px) {
	
.toast-container{
  position: fixed;
  top: 60%;
  left: 0;
  right: 0;
  bottom: auto; /* Changed from 0 to auto */
  display: flex;
  align-items: flex-start; /* Changed from center */
  justify-content: center;
  z-index: 600;
  pointer-events: none;
}
	
.user-display-container{
  position: fixed;
  top: 60%;
  left: 0;
  right: 0;
  bottom: auto; /* Changed from 0 to auto */
  display: flex;
  align-items: flex-start; /* Changed from center */
  justify-content: center;
  z-index: 17;
  pointer-events: none;
}
	
.toast {
  min-width: 90%;
  max-width: 90%;
  font-size: 16px;
  position: fixed;
  top: 60%;
  left: 5%;
  z-index: 10000;
}
	
.user-initial {
	position: fixed;
    height: 7.5vw;
    width: 7.5vw;
    top: 0.75vw;
    right: 0.75vw;
	font-family: "Imprima", sans-serif;
	font-weight: 600;
	font-size: 2.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: black;
	border-radius: 50px;
    color: #D5FF4F;
	z-index: 17;
}
	
.logged-out-message {
    position: fixed;
    height: 10vw;
    width: 90vw;
    bottom: 2vh;
    left: 5vw;
    border-radius: 5px;
	border: 2px solid #D5FF4F;
    background: black;
    color: white;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
	z-index: 500;
}
	
}
	
/* LANDSCAPE MOBILE/TABLET (480px to 1099px wide) */
@media only screen and (min-width: 480px) and (orientation: landscape) and (max-width: 1099px) {
	
.toast-container{
  position: fixed;
  left: 40vw;
  right: auto; /* ADD THIS - removes the inherited right: 0 */
  top: 2vh;
  bottom: auto; /* ADD THIS - removes the inherited bottom: 0 */
  display: flex;
  align-items: flex-start; /* Changed from center */
  justify-content: flex-start; /* Changed from center */
  z-index: 600;
  pointer-events: none;
}
	
.user-display-container{
  position: fixed;
  left: 40vw;
  right: auto; /* ADD THIS - removes the inherited right: 0 */
  top: 2vh;
  bottom: auto; /* ADD THIS - removes the inherited bottom: 0 */
  display: flex;
  align-items: flex-start; /* Changed from center */
  justify-content: flex-start; /* Changed from center */
  z-index: 17;
  pointer-events: none;
}
	
.user-initial {
	position: fixed;
    height: 3.5vw;
    width: 3.5vw;
    bottom: calc(6vh + 2vw);
    right: 39vw;
	font-family: "Imprima", sans-serif;
	font-weight: 600;
	font-size: 6vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: black;
	border-radius: 50px;
    color: #D5FF4F;
	z-index: 17;
}
	
.logged-out-message {
    position: fixed;
    height: 4.5vw;
    width: 84vw;
    bottom: 6vh;
    left: 8vw;
    border-radius: 5px;
	border: 2px solid #D5FF4F;
    background: black;
    color: white;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
	z-index: 500;
}
	
}
	
/* DESKTOP (1100px and wider) */
@media only screen and (min-width: 1100px) {
	
.toast-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 600;
  pointer-events: none;
}
	
.user-display-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 17;
  pointer-events: none;
}
	
	
.toast {
  left: 2%;
}
	
.user-initial {
    position: fixed;
    top: 4vh;
    left: calc(51.25vw + min(44.75vw, 745px));
    transform: translateX(-100%);
    height: 2vw;
    width: 2.2vw;
    font-family: "Imprima", sans-serif;
    font-weight: 600;
    font-size: 1.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: black;
    border-radius: 50px;
    color: #D5FF4F;
    z-index: 17;
}
	
.logged-out-message {
    position: fixed;
    height: 3vw;
    width: 25vw;
    bottom: 1vh;
    left: 37.5vw;
    border-radius: 5px;
	border: 2px solid #D5FF4F;
    background: black;
    color: white;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
	z-index: 500;
}
	
}