
  /* css/toast-notifications.css */
  #toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    /* Asegurarnos que esté por encima de todo */
  }

  .toast {
    background: white;
    padding: 16px 24px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.5s ease forwards;
  }

  .toast.success {
    border-left: 4px solid #48bb78;
    background-color: #f0fff4;
    color: #2f855a;
  }

  .toast.error {
    border-left: 4px solid #f56565;
    background-color: #fff5f5;
    color: #c53030;
  }

  .toast .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    margin-left: 10px;
    opacity: 0.5;
    color: currentColor;
  }

  .toast .close-btn:hover {
    opacity: 1;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideOut {
    to {
      transform: translateX(100%);
      opacity: 0;
    }
  }

  .toast.hiding {
    animation: slideOut 0.5s ease forwards;
  }


  @media(max-width:768px) {
    form label {
      width: 100%;
      text-align: left;
    }

    form input {
      width: 100% !important;
    }

    form textarea {
      width: 100% !important;

    }
  }