/* Custom Scrollbar for Horizontal scrolling categories */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom Alert Notification System */
#custom-alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-alert {
    min-width: 250px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-alert.show {
    transform: translateX(0);
}

.alert-success { background-color: #10B981; } /* Tailwind Green 500 */
.alert-error { background-color: #EF4444; }   /* Tailwind Red 500 */
.alert-warning { background-color: #F59E0B; } /* Tailwind Amber 500 */
.alert-info { background-color: #3B82F6; }    /* Tailwind Blue 500 */