#globalDmToast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1f6feb;
    color: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    cursor: pointer;
    z-index: 99999;
    display: none;
    align-items: center;
    gap: 15px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(20px);
    opacity: 0;
}

#globalDmToast.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

#globalDmToast:hover {
    filter: brightness(1.1);
}

.toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-title {
    font-size: 14px;
    font-weight: bold;
}

.toast-preview {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}