/* ============================================
   NOTIFICATION SYSTEM
   ============================================ */

.gvp-notification-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.gvp-notification {
    min-width: 320px;
    max-width: 420px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 
                0 10px 10px -5px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    pointer-events: auto;
    animation: gvpNotificationSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gvp-notification:hover {
    transform: translateX(-4px);
    box-shadow: 0 24px 30px -5px rgba(0, 0, 0, 0.4), 
                0 12px 12px -5px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.15);
}

.gvp-notification--success {
    border-left: 4px solid #10b981;
}

.gvp-notification--error {
    border-left: 4px solid #ef4444;
}

.gvp-notification--warning {
    border-left: 4px solid #f59e0b;
}

.gvp-notification--info {
    border-left: 4px solid #3b82f6;
}

.gvp-notification__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 2px;
}

.gvp-notification--success .gvp-notification__icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.gvp-notification--error .gvp-notification__icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.gvp-notification--warning .gvp-notification__icon {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.gvp-notification--info .gvp-notification__icon {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.gvp-notification__icon svg {
    width: 16px;
    height: 16px;
}

.gvp-notification__content {
    flex: 1;
    min-width: 0;
}

.gvp-notification__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f3f4f6;
    margin: 0 0 0.25rem 0;
}

.gvp-notification__message {
    font-size: 0.8125rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
}

.gvp-notification__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    border-radius: 0 0 0 12px;
    animation: gvpNotificationProgress 3s linear;
}

.gvp-notification--success .gvp-notification__progress {
    background: #10b981;
}

.gvp-notification--error .gvp-notification__progress {
    background: #ef4444;
}

.gvp-notification--warning .gvp-notification__progress {
    background: #f59e0b;
}

.gvp-notification--info .gvp-notification__progress {
    background: #3b82f6;
}

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

@keyframes gvpNotificationProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Адаптивність для менших екранів */
@media (max-width: 768px) {
    .gvp-notification-container {
        top: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
    }
    
    .gvp-notification {
        min-width: auto;
        max-width: none;
    }
}

