.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 16px;
    max-width: 350px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    cursor: pointer;
}
.custom-notification.show {
    transform: translateX(0);
}
.notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}
.notification-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}
.notification-body {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}
.notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
}