/* styles/components/toast.css */
.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 400px;
    background-color: white;
    color: #333;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
  }
  
  .custom-toast.show {
    transform: translateX(0);
  }
  
  .toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .toast-icon {
    font-size: 24px;
  }
  
  .toast-message {
    font-size: 16px;
    flex: 1;
  }
  
  .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #ff6b6b;
  }
  
  .custom-toast.success {
    border-left: 5px solid #4CAF50;
  }
  
  .custom-toast.error {
    border-left: 5px solid #f44336;
  }
  
  .custom-toast.info {
    border-left: 5px solid #2196F3;
  }
  