#global-import-tracker {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    z-index: 9999;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}
#global-import-tracker.minimized {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
}
#global-import-tracker.minimized .tracker-content {
    display: none;
}
#global-import-tracker.minimized .tracker-mini {
    display: flex;
}
.tracker-mini {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #007bff;
    color: white;
}
