.notification-container {
    position: fixed;
    top: 0;
    right: 0;
    padding: 24px;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 10000000;
  }
  
  .notification-panel-success {
    width: 100%;
    max-width: 384px; 
    background-color: #dbf3e2;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    pointer-events: auto;
    overflow: hidden;
    transform: translateY(100px);
    animation: slide-in 0.3s ease-out forwards;
  }

  .notification-panel-error {
    width: 100%;
    max-width: 384px; 
    background-color: #f3dbdb;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    pointer-events: auto;
    overflow: hidden;
    transform: translateY(100px);
    animation: slide-in 0.3s ease-out forwards;
  }

  .notification-panel-warning {
    width: 100%;
    max-width: 384px; 
    background-color: #ffe1aa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    pointer-events: auto;
    overflow: hidden;
    transform: translateY(100px);
    animation: slide-in 0.3s ease-out forwards;
  }

  
  
  @keyframes slide-in {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .notification-content {
    padding: 16px;
    display: flex;
    align-items: start;
  }
  
  .icon-container {
    flex-shrink: 0;
  }
  
  .success-icon {
    height: 24px;
    width: 24px;
    color: #34D399; 
  }
  
  .error-icon{
    height: 24px;
    width: 24px;
    color: #d33434;     
  }

  .warning-icon{
    height: 24px;
    width: 24px;
    color: #e09b19;     
  }

  .message-container {
    margin-left: 12px;
    flex-grow: 1;
  }
  
  .message-title {
    font-size: 0.875rem;
    font-weight: 500; 
    color: #111827; 
  }
  
  .message-text {
    margin-top: 4px;
    font-size: 0.875rem;
    color: #6B7280;
  }
  
  .close-button-container {
    margin-left: 16px;
  }
  
  .close-button {
    background: none;
    border: none;
    color: #9CA3AF;
  }
  
  .close-button:hover {
    color: #6B7280;
  }
  
  .close-icon {
    height: 20px;
    width: 20px;
  }

  @media (max-width: 800px) {
    .notification-container {
        bottom: 0 !important;
        width: 100% !important;
    }

    .notification-panel {
        max-width: 95% !important;
        width: 95% !important;
    }
  }