.notice_text{
    margin: 20px 10px;
    padding: 10px 20px;
    background-color: #f4ab36;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  
  #notificationContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #e88f00a6;
    border: 2px solid #f4ab36;
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-out;
    position: relative;
    overflow: hidden;
  }

  .notification.success{
    background-color: #00985483;
    border: 2px solid #0dcb75;
  }

  .notification.processing{
    background-color: #e88f00a6;
    border: 2px solid #f4ab36;
  }

  .notification.error{
    background-color: #46000096;
    border: 2px solid rgb(255, 53, 53);
  }
  
  .notification .message {
    font-size: 14px;
    flex: 1;
  }
  
  .notification .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
  }
/* 
  .notification.success .close-btn {
    color: #0dcb75;
  }
 
  .notification.error .close-btn {
    color: rgb(255, 53, 53);
  } */
  
  .notification .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    animation: progress 5s linear;
}

.notification.success .progress-bar{
    background-color: #0dcb75;
}
.notification.error .progress-bar{
    background-color: rgb(255, 53, 53);
}

.notification.slide-out {
  animation: slideOut 0.4s ease forwards;
}

@keyframes slideOut {
  from {
    transform: translateX(0%);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
  
  @keyframes slideIn {
    0% {
      transform: translateX(100%);

    }
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes progress {
    from {
      width: 100%;
    }
    to {
      width: 0;
    }
  }
  