
@media (max-width: 768px) {
    .notifications-container {
        top: 350px;
        left: 25px;
    }
}
.notifications-container {
    position: fixed;
    top: 120px;
    right: 25px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    gap: 10px;
}

.notification {
    display: flex;
    align-items: center;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0);
    transform-origin: top right;
    transition: opacity 0.3s ease, transform 0.3s ease, opacity 0.6s ease-out;
    cursor: pointer;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
}

.notification.show {
    opacity: 1;
    transform: scale(1);
}

.notification.success {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.8), rgba(113, 221, 138, 0.8));
}

.notification.warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.8), rgba(255, 234, 112, 0.8));
}

.notification.danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.8), rgba(247, 112, 108, 0.8));
}

.notification.primary {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(90, 176, 255, 0.8));
}

.notification i {
    margin-right: 15px;
}

.screen-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screen-flash.success {
    background: radial-gradient(circle at center, transparent, transparent 50%, rgba(40, 167, 69, 0.5));
}

.screen-flash.warning {
    background: radial-gradient(circle at center, transparent, transparent 50%, rgba(255, 193, 7, 0.5));
}

.screen-flash.danger {
    background: radial-gradient(circle at center, transparent, transparent 50%, rgba(220, 53, 69, 0.5));
}

.screen-flash.primary {
    background: radial-gradient(circle at center, transparent, transparent 50%, rgba(0, 123, 255, 0.5));
}

.screen-flash.flash {
    opacity: 1;
}