.twonotify_notification_list {
    position: fixed;
    z-index: 9999;
    width: 320px;
    top: 40px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.twonotify_notification {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    animation: slideInRight 0.4s ease forwards;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.twonotify_icon {
    margin-right: 12px;
    flex-shrink: 0;
}
.twonotify_icon img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.twonotify_content {
    flex: 1;
}
.twonotify_content h4 {
    margin: 0 0 4px 0;
    font-weight: 600;
    font-size: 16px;
    color: #222;
}
.twonotify_content p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.twonotify_notification .close {
    margin-left: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #aaa;
    transition: color 0.2s ease;
}
.twonotify_notification .close:hover {
    color: #ff4d4f;
}

.twonotify_actions { margin-top: 8px; }
.twonotify_btn {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.twonotify_btn:hover { transform: translateY(-1px); }
