#notification {
    position: fixed;
    z-index: 9999;
    top: -100px;
    /* start off-screen */
    right: 16px;
    transition: top 0.5s ease;
    /* smooth transition for dropdown */
}

.notification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(34, 197, 94, 0.8);
    border-radius: 8px;
    padding: 10px;
}

.notification-visible {
    top: 16px;
    /* dropdown to visible position */
}

.notification-icon {
    display: flex;
    align-items: right;
    justify-content: right;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
    margin-right: 10px;
}

.notification-message {
    color: white;
}

.swal2-custom {
    background-color: transparent !important;
    /* Make Swal background transparent */
    /* Add any additional styling as needed */
}

.search-button svg,
.search-button:hover svg,
.search-button:active svg,
.search-button:focus svg,
[class*="icon-"].search-button svg,
button[id*="search"] svg {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Ensure SVG stays static even with parent hover */
.search-button:hover svg *,
.search-button:active svg *,
.search-button:focus svg *,
[class*="icon-"].search-button svg *,
button[id*="search"] svg * {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Block any inherited animations */
.search-button svg *,
[class*="icon-"].search-button svg *,
button[id*="search"] svg * {
    animation: none !important;
    transition: none !important;
    pointer-events: none !important;
}

/* Ensure path and other SVG elements stay static */
.search-button svg path,
.search-button:hover svg path,
[class*="icon-"].search-button svg path,
button[id*="search"] svg path,
.search-button svg [d*="M9"],
.search-button:hover svg [d*="M9"],
[class*="icon-search"] path,
[class*="icon-"] path[d*="M9"] {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

/* Override any global path animations */
[class*="icon-"] path,
svg path[d*="M9"],
path[fill-rule="evenodd"],
.search-button [fill-rule="evenodd"] {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    pointer-events: none !important;
}
