.notification-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    max-width: 400px;
    width: 90%;
    pointer-events: none;
}

.notification-card {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.notification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}



.notification-card.success .notification-icon {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

.notification-card.success .notification-title {
    color: #10B981;
}


.notification-card.error .notification-icon {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
}

.notification-card.error .notification-title {
    color: #EF4444;
}


.notification-card.warning .notification-icon {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
}

.notification-card.warning .notification-title {
    color: #F59E0B;
}


.notification-card.info .notification-icon {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.1);
}

.notification-card.info .notification-title {
    color: #3B82F6;
}

.notification-icon {
    font-size: 14px;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.notification-message {
    color: #E2E8F0;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    transform-origin: left;
    animation: progress 5s linear forwards;
}

.notification-card.success .notification-progress {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.8), rgba(16, 185, 129, 0.2));
}

.notification-card.error .notification-progress {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.8), rgba(239, 68, 68, 0.2));
}

.notification-card.warning .notification-progress {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.8), rgba(245, 158, 11, 0.2));
}

.notification-card.info .notification-progress {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.8), rgba(59, 130, 246, 0.2));
}

@keyframes progress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.notification-card.show {
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.notification-card.hide {
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.notification-close {
    color: #94A3B8;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}
.notification-close:focus{
    outline: none !important;
    box-shadow: none !important;
}