#eoh-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.eoh-toast {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 2em;
    border: 1px solid #a58a5f;
    background-color: #181818;
    color: #f4e7d8;
    height: 100px;
    opacity: 0;
    transition: opacity 0.8s;
    margin-bottom: 10px; 
}

.eoh-toast.show {
    opacity: 1;
}

.eoh-toast img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.eoh-toast .message {
    flex: 1;
}

.hide {
    display: none;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

