#notification-container {
    position: fixed;
    top: 100px; /* top se 100px neeche */
    right: 20px;
    z-index: 9999;
}



.notification {
    background: #FFD700; /* bright yellow */
    color: #222; /* text color white */
    padding: 15px 25px; /* thoda aur padding */
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    font-size: 1.1rem; /* larger font */
    font-weight: 600;
    min-width: 220px;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

/* Left accent line */
.notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #FFA500; /* darker yellow/orange accent */
    border-radius: 8px 0 0 8px;
}

/* Show animation */
.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Hover effect */
.notification:hover {
    transform: translateX(0) scale(1.02);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
