#erasvn-notification-container {
    position: fixed;
    bottom: 30px;
    z-index: 999999;
}

/* Các class Vị trí */
.erasvn-bottom-left { left: 30px; }
.erasvn-bottom-right { right: 30px; }

/* Định dạng thẻ Popup */
.erasvn-toast {
    display: flex;
    background: #ffffff;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 25px 12px 12px;
    width: max-content;
    max-width: 380px;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.erasvn-toast.slide-in {
    opacity: 1;
    transform: translateY(0);
}

.erasvn-toast.slide-out {
    opacity: 0;
    transform: translateY(30px);
}

/* Khung Avatar */
.erasvn-toast .erasvn-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Nội dung Text */
.erasvn-toast .erasvn-content p {
    margin: 0 0 5px !important;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.erasvn-toast .erasvn-content p strong {
    color: #000;
}

.erasvn-toast .erasvn-content p a {
    color: #0052cc;
    text-decoration: none;
    font-weight: bold;
}

.erasvn-toast .erasvn-content p a:hover {
    text-decoration: underline;
}

.erasvn-toast .erasvn-content small {
    color: #777;
    font-size: 12px;
    display: block;
}

/* Nút Tắt X */
.erasvn-toast .erasvn-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    line-height: 1;
    color: #ccc;
    cursor: pointer;
    transition: 0.2s;
}

.erasvn-toast .erasvn-close:hover {
    color: #ff4757;
}