

/* Base toast container size */
.p-toast {
  max-width: 350px;  
  max-height: 90vh;
}

.p-toast-message {
  max-width: 100%;   
  box-sizing: border-box;
}


.toast-small .p-toast-message {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.toast-medium .p-toast-message {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.toast-large .p-toast-message {
  font-size: 1.25rem;
  padding: 1rem 1.5rem;
}


@media (max-width: 600px) {
  .p-toast {
    max-width: 90vw; 
    left: 5vw !important; 
    right: auto !important; 
    max-height: 200px;
  }

  .p-toast-message {
    font-size: 0.9rem !important;
    padding: 0.4rem 0.8rem !important;
  }
}