#AlertContainer {
    position: fixed;
    top: 30px;
    left: 50%;
    display: flex;
    justify-content: center;
    transform: translateX(-50%);
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 99999999;
    transition: all 0.33s ease-in-out;
}

.alert {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1d1d1d;
    color: white;
    padding: 0px 10px;
    min-width: 200px;
    max-width: 450px;
    padding: 8px 20px;
    transition: all 0.33s ease-in-out;
    transform: translateY(20px);
    opacity: 0;
    border-radius: 5px;
    z-index: 99999999;
}

p {
    font-size: 15px;
    font-weight: 400;
}