/* Container das notificações */
.fania-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999999; /* Valor bem alto para ficar na frente de tudo */
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  /* Base da notificação */
  .fania-toast {
    min-width: 300px;
    max-width: 420px;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: 'Heebo', sans-serif;
    animation: faniaSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 6px solid #ccc;
  }
  
  @keyframes faniaSlideIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
  }
  
  .fania-toast.fania-hiding {
    animation: faniaSlideOut 0.3s ease-in forwards;
  }
  
  @keyframes faniaSlideOut {
    to { opacity: 0; transform: translateX(100%); }
  }
  
  .fania-toast-success { border-left-color: #10b981; background: #f0fdf4; }
  .fania-toast-error { border-left-color: #ef4444; background: #fef2f2; }
  
  .fania-toast-icon { font-size: 20px; font-weight: bold; }
  .fania-toast-success .fania-toast-icon { color: #10b981; }
  .fania-toast-error .fania-toast-icon { color: #ef4444; }
  
  .fania-toast-title { font-weight: 700; color: #002942; margin-bottom: 4px; }
  .fania-toast-message { font-size: 14px; color: #555; }
  
  .fania-toast-close {
    background: #eee;
    border: none;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  
  .fania-toast-close:hover { background: #ddd; }