 /* alertLibrary.css */
 .alert {
    padding: 15px 14px;
    margin: 5px 0;
    border: 1px solid transparent;
    border-radius: 14px;
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 1000000;
    width: auto;
    min-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 7px;
    font-size: 14.2px;
    height: 70px;
    align-items: center;
    font-weight: 400;
    animation: fadeIn 0.5s forwards, fadeOut 0.5s forwards 4.5s; 
}
@keyframes fadeIn { 
    from {
         opacity: 0;
          transform: translateY(-20px);
         } 
         to {
             opacity: 1; 
             transform: translateY(0); 
            } 
} @keyframes fadeOut { 
    from { 
        opacity: 1; 
        transform: translateY(0);
     }
      to { 
        opacity: 0; 
        transform: translateY(-20px);
      }
    }

.alert-success {
    color: #fff;
    background-color: #099247;
    box-shadow: 3px 4px 24px #09924740;
}

.alert-error {
    color: #ffffff;
    background-color: #D42234;
}

.alert-warning {
    color: #292D32;
    background-color: #F5D000;
}

.alert-info {
    color: #ffffff;
    background-color: #00B1DF;
}

.alert-close {
    position: absolute;
    /* top: 15px; */
    left: 17px;
    cursor: pointer;
    color: #ffffff;
    font-family: system-ui;
}

.alert-warning .alert-close {
    color: #5b5526 !important;
}