#notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px; /* Added spacing for better alignment */
}

.notification {
    background: linear-gradient(135deg, #25258e 0%, #6a67d1 100%);
    /* Theme color to a lighter complementary shade */
    color: #ffffff;
    /* White text for better contrast */
    padding: 16px 24px;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-family: "Arial", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
    /* Added for icon or extra elements */
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.hide {
    opacity: 0;
    transform: translateY(100%);
}

.notification strong {
    font-weight: 700;
    display: block;
}

.notification svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    /* Ensure icons maintain size */
    fill: #ffffff;
    /* Ensure the icon matches text color */
}
