body {
    font-family: Kanit, sans-serif;
    color: #fff;
}

.LastWithdraw {
    width: -webkit-fill-available;
    max-width: 1000px;
    height: fit-content;
    padding: 1rem 0.5rem;
    border-radius: 2rem;
    /* background-color: rgb(0, 0, 0); */
    overflow: hidden;
}

.LastWithdraw h2 {
    font-size: 1.5em;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.notification-container {
    display: flex;
    gap: 10px;
    flex-direction: column-reverse;
    position: relative;
    top: -50px;
}

.notification {
    color: #111;
    background: transparent;
    border: 1px solid #00ff00;
    padding: 0.5rem 0.5rem;
    border-radius: 1.68rem;
    box-shadow: 0 0px 5px #00ff00;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    animation: slideDown 1s ease forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(100%);
    }
}

.notification .icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.notification .highlight {
    color: #00ff00;
}

.notification .amount {
    font-weight: 500;
    color: #00ff00;
}

.notification p {
    margin: 0;
    color: #fff;
    font-size: 15px;
}