/* Tracking Notifications */
.tracker-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 14px 18px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    transition: all 0.3s ease;
}

.tracker-notification.fade-out {
    opacity: 0;
    transform: translateX(100%);
}

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

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

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

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

.tracker-icon {
    font-size: 20px;
}

.tracker-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.tracker-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.5;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.tracker-close:hover {
    opacity: 1;
}

/* Tracking States */
.tracking-active {
    border: 2px solid #10b981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1) !important;
}

.tracking-active::after {
    content: 'TRACKING';
    position: absolute;
    top: -10px;
    right: 10px;
    background: #10b981;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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