/* Notification System Styles */
.notification-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.notification {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    min-width: 300px;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(85, 255, 81, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    background: rgba(85, 255, 81, 0.2);
    color: #55ff51;
}

.notification-error .notification-icon {
    background: rgba(255, 0, 0, 0.2);
    color: #ff5555;
}

.notification-info .notification-icon {
    background: rgba(85, 170, 255, 0.2);
    color: #55aaff;
}

.notification-warning .notification-icon {
    background: rgba(255, 200, 0, 0.2);
    color: #ffc800;
}

.notification-message {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .notification-container {
        right: 10px;
        left: 10px;
        top: 80px;
    }
    
    .notification {
        min-width: auto;
        max-width: 100%;
    }
}

