/**
 * Notification Styles
 *
 * @package AITools_Hub
 */

.notification {
    position: fixed;
    top: 100px;
    right: 24px;
    min-width: 320px;
    max-width: 420px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-success i {
    color: #10b981;
    font-size: 20px;
}

.notification-error {
    border-left: 4px solid #dc2626;
}

.notification-error i {
    color: #dc2626;
    font-size: 20px;
}

.notification span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #1F2D2B;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .notification {
        right: 16px;
        left: 16px;
        min-width: auto;
        max-width: none;
    }
}