/* Notification Container */
#notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

/* Notification Base Style */
.notification {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #ccc;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    min-width: 300px;
    max-width: 400px;
    word-wrap: break-word;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Notification Icon */
.notification i.fas {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Notification Message */
.notification-message {
    flex: 1;
    color: #333;
    line-height: 1.4;
}

/* Close Button */
.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #999;
    font-size: 1rem;
    transition: color 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    color: #333;
}

/* Success Notification */
.notification-success {
    border-left-color: #4caf50;
}

.notification-success i.fas {
    color: #4caf50;
}

/* Error Notification */
.notification-error {
    border-left-color: #f44336;
}

.notification-error i.fas {
    color: #f44336;
}

/* Warning Notification */
.notification-warning {
    border-left-color: #ff9800;
}

.notification-warning i.fas {
    color: #ff9800;
}

/* Info Notification */
.notification-info {
    border-left-color: #2196f3;
}

.notification-info i.fas {
    color: #2196f3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #notification-container {
        top: 8px;
        right: 8px;
        left: 8px;
        max-width: none;
    }
    
    .notification {
        min-width: auto;
        max-width: none;
        padding: 12px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    #notification-container {
        top: 6px;
        right: 6px;
        left: 6px;
        gap: 8px;
    }

    .notification {
        padding: 10px 12px;
        gap: 8px;
        border-radius: 10px;
        font-size: 0.8rem;
    }

    .notification i.fas {
        font-size: 1.05rem;
    }
}
