/* Machine scan marker styles */
.markerContainer {
    display: inline-flex;
    align-items: center;
    background-color: #fef9c3;
    color: #854d0e;
    border: 1px solid #fde047;
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    margin: 0 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: default;
    user-select: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.markerContainer:hover {
    background-color: #fef08a;
    border-color: #facc15;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.markerIcon {
    margin-right: 0.25rem;
    font-size: 1rem;
}

.markerText {
    font-weight: 500;
}

/* Visual indicator for hover state */
.markerContainer:hover::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    background-color: #eab308;
    border-radius: 50%;
    opacity: 1;
} 